tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / formmethod-attribute-button-html.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../fast/js/resources/js-test-pre.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.layoutTestController) {
16     layoutTestController.waitUntilDone();
17 }
18
19 var button = document.getElementById('button');
20
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');
29
30         if (window.layoutTestController)
31             layoutTestController.notifyDone();
32     }
33 }
34 </script>
35 <script src="../../fast/js/resources/js-test-post.js"></script>
36 </body>
37 </html>