Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / advanced-get.html
blobf9497878ea51732acb11643170f27c7f14d125b1
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>action="mailto" GET method</title>
5 <script>
6 function test() {
7 if (window.testRunner) {
8 testRunner.dumpAsText();
9 testRunner.waitForPolicyDelegate();
10 document.getElementsByTagName("form")[0].submit();
13 </script>
14 <style>input { width: 100px; } </style>
15 </head>
16 <body onload="test()">
17 <p>Press Compose button and check that the created e-mail has correct headers and body.</p>
18 <form action="mailto:" method="get">
19 <input name="to" value="to1@site.com,to2@site.com,to3@site.com">
20 <input name="cc" value="cc1@site.com,cc2@site.com,cc3@site.com">
21 <input name="bcc" value="bcc1@site.com,bcc2@site.com,bcc3@site.com">
22 <input name="subject" value="m&amp;m;?=">
23 <textarea name="body">line1
24 line2
25 line3
26 line4</textarea>
27 <input type="submit" value="Compose">
28 </form>
29 </body>
30 </html>