Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / post-append-query.html
blob8487319acf925f4c32e577fa1dd9138d05a4152a
1 <body onload="test()">
2 <form method="post" action="mailto:nobody@gmail.com?to=another@example.org&amp;body=Body">
3 <input type="text" size="10" maxlength="40" name="to" value="someone@example.org">
4 <input type="submit" value="Send">
5 </form>
6 <div>Expected results when clicking "Send" button: A new mail message is created with an empty body, and two addressees.</div>
7 <script>
8 function test() {
9 if (window.testRunner) {
10 testRunner.dumpAsText();
11 testRunner.waitForPolicyDelegate();
12 document.getElementsByTagName("form")[0].submit();
15 </script>