| Index: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-005.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-005.html b/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-005.html
|
| deleted file mode 100644
|
| index 5dd5ce7edb9c53ae4f34cb98c9dfb47bae7517ac..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-005.html
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<title>required and valueMissing on unaccepted input types</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");
|
| -
|
| - for (i = 0; i < v.length; i++)
|
| - log(!v[i].validity.valueMissing ? "SUCCESS" : "FAILURE");
|
| - }
|
| -</script>
|
| -</head>
|
| -<body onload="test()">
|
| -<p>There's a list of form control elements below, required attribute does not apply to them:
|
| -validity.valueMissing should be false.</p>
|
| -<input name="victim" type="hidden" required />
|
| -<input name="victim" type="range" required />
|
| -<input name="victim" type="image" required />
|
| -<input name="victim" type="reset" required />
|
| -<input name="victim" type="button" required />
|
| -<input name="victim" type="submit" required />
|
| -<hr>
|
| -<ol id="console"></ol>
|
| -</body>
|
| -</html>
|
|
|