| <html> |
| <head> |
| <title>pattern attribute set test</title> |
| <script language="JavaScript" type="text/javascript"> |
| function log(message) { |
| document.getElementById("console").innerHTML += "<li>"+message+"</li>"; |
| } |
| |
| function test() { |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| |
| v = document.getElementsByName("victim"); |
| v[0].pattern += " else"; |
| log(v[0].pattern == "something else" ? "SUCCESS" : "FAILURE"); |
| } |
| </script> |
| </head> |
| <body onload="test()"> |
| <p>There an input element with the pattern attribute set.</p> |
| <input name="victim" pattern="something" /> |
| <hr> |
| <ol id="console"></ol> |
| </body> |
| </html> |