| Index: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-004.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-004.html b/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-004.html
|
| deleted file mode 100644
|
| index 4dad439cb98fa741e3ef7f95a00e07a7dafca790..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-004.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<title>required and valueMissing on readonly elements</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 readonly form control elements below, both required and with some value:
|
| -validity.valueMissing should be false in both cases.</p>
|
| -<input name="victim" readonly required />
|
| -<textarea name="victim" readonly required></textarea>
|
| -<hr>
|
| -<ol id="console"></ol>
|
| -</body>
|
| -</html>
|
|
|