Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / post-multiple-items-x-www-form-urlencoded.html
blobab79066cb319316307d50c1a4034145273e39ff2
1 <body onload="test()">
2 <form method="post" enctype="application/x-www-form-urlencoded" action="mailto:">
3 Field 1: <input type="text" size="10" maxlength="40" name="to" value="one@example.org">
4 Field 2: <textarea name="body">Line 1
5 Line 2
6 @&amp;=,;?"</textarea>
7 <input type="submit" value="Send">
8 </form>
9 <script>
10 function test() {
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 testRunner.waitForPolicyDelegate();
14 document.getElementsByTagName("form")[0].submit();
17 </script>