Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / get-overwrite-query.html
blobb1089cb98af6f26826d99ea2840b5112eaf5f78b
1 <body onload="test()">
2 <form method="get" 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>