Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / get-multiple-items-text-plain.html
blob91876a57cff52d0ad1b385690cb9d2c095607406
1 <body onload="test()">
2 <form method="get" enctype="text/plain" 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>