| Index: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-009.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-009.html b/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-009.html
|
| deleted file mode 100644
|
| index e749efe091f78cb681be5671febd0fc3290168ab..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-009.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<title>required and valueMissing on new 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 applies to them but they're empty:
|
| -validity.valueMissing should be true.</p>
|
| -<input name="victim" type="text" required />
|
| -<input name="victim" type="search" required />
|
| -<input name="victim" type="url" required />
|
| -<input name="victim" type="telephone" required />
|
| -<input name="victim" type="email" required />
|
| -<input name="victim" type="password" required />
|
| -<input name="victim" type="number" required />
|
| -<hr>
|
| -<ol id="console"></ol>
|
| -</body>
|
| -</html>
|
|
|