blob: 2993ea75a166d824c766d7cf29cec02000b1c3ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<html>
<head>
<title>pattern attribute presence 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");
log(v[0].pattern ? "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>
|