Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / formmethod-attribute-button-html.html
blob8b7795a39a9008be399f70d99990e0407998c0af
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <p id="description"></p>
8 <div id="console"></div>
9 <form method="get" action="?">
10 <input type="hidden" name="hidden" value="I am hidden" />
11 <button id="button" formmethod="post" type="submit" name="button" value="value" />
12 </form>
13 <script>
14 description("Test for the formmethod attribute in button tags.");
15 if (window.testRunner) {
16 testRunner.waitUntilDone();
19 var button = document.getElementById('button');
21 if (document.URL.substring(0, 4) == "file") {
22 if (document.URL.indexOf('?') == -1) {
23 button.click();
24 } else {
25 if (document.URL.substring(document.URL.indexOf('?') + 1, document.URL.length) == "")
26 testPassed('The formmethod attribute was successfully used');
27 else
28 testFailed('The formmethod attribute was not used');
30 if (window.testRunner)
31 testRunner.notifyDone();
34 </script>
35 </body>
36 </html>