1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../../resources/js-test.js"></script>
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 <input id=
"button" formmethod=
"post" type=
"submit" name=
"button" />
14 description("Test for the formmethod attribute in input 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) {
25 if (document
.URL
.substring(document
.URL
.indexOf('?') + 1, document
.URL
.length
) == "")
26 testPassed('The formmethod attribute was successfully used');
28 testFailed('The formmethod attribute was not used');
30 if (window
.testRunner
)
31 testRunner
.notifyDone();