Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-005.html

Issue 2211743003: Merge layout tests ValidityState-valueMissing-00N.html into one. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build HTML tree in each of tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698