Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / get-multiple-items.html
blobd750c34cf42df0a051b8c75ad0af930cea0c7881
1 <body onload="test()">
2 <form method="get" 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 an empty body.</div>
8 <script>
9 function test() {
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitForPolicyDelegate();
13 document.getElementsByTagName("form")[0].submit();
16 </script>