Index: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-006.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-006.html b/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-006.html |
deleted file mode 100644 |
index 0df4473d73772180d6a01f17c8fa1899ea609d90..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-006.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<html> |
-<head> |
-<title>required and valueMissing on checkboxes</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].validity.valueMissing && v[1].validity.valueMissing ? "SUCCESS" : "FAILURE"); |
- } |
-</script> |
-</head> |
-<body onload="test()"> |
-<p>There are two checkboxes below, both are required, only one is checked.</p> |
-<input name="victim" type="checkbox" required checked/> |
-<input name="victim" type="checkbox" required /> |
-<hr> |
-<ol id="console"></ol> |
-</body> |
-</html> |