Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / empty-file-formdata.html
blob7fa300a664c883be15c1cdc84c371d1a1f2f993d
1 <html>
2 <head>
3 <script>
4 function test()
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
11 document.forms[0].submit();
14 window.onload = test;
15 </script>
16 </head>
17 <body>
18 <form enctype="multipart/form-data" method="POST" action="resources/check-unnamed-file-included-in-formdata.php">
19 <input name="data" type="file"></input>
20 </form>
21 </body>
22 </html>