Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / post-multiple-items.html
blob8cfb4ee7b7e49ac5e2ef6e0ce09684615dd21b43
1 <body onload="test()">
2 <form method="post" action="mailto:nobody@gmail.com">
3 Field 1: <input type="text" size="10" maxlength="40" name="field1" value="value 1">
4 Field 2: <input type="text" size="10" maxlength="40" name="field2" value="value 2">
5 <input type="submit" value="Send">
6 </form>
7 <div>Expected results when clicking "Send" button: A new mail message is created with a body of "field1=value 1&field2=value 2".</div>
8 <script>
9 function test() {
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitForPolicyDelegate();
13 document.getElementsByTagName("form")[0].submit();
16 </script>