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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-002.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-002.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-002.html b/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-002.html
deleted file mode 100644
index a793c397b68c5998e1ab967c350c788a941c6481..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/ValidityState-valueMissing-002.html
+++ /dev/null
@@ -1,98 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<title>required and basic valueMissing 2</title>
-<script src="../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<div id=parent>
-<input id="input" name="victim" value="something" required/>
-<textarea id="textarea" name="victim" required>something</textarea>
-<select id="select-with-placeholder" name="victim" required>
- <option value="" />
- <option value="X" selected>X</option>
-</select>
-<select id="select-without-placeholder" name="victim" required>
- <option value="X" selected>X</option>
- <option value="" />
-</select>
-<select id="select-with-fake-placeholder-size2" name="victim" size="2" required>
- <option value="" />
- <option value="X" selected>X</option>
-</select>
-<select id="select-without-fake-placeholder-size2" name="victim" size="2" required>
- <option value="X" selected>X</option>
- <option value="" />
-</select>
-<select id="select-with-fake-placeholder-multiple" name="victim" multiple required>
- <option value="" />
- <option value="X" selected>X</option>
-</select>
-<select id="select-without-fake-placeholder-multiple" name="victim" multiple required>
- <option value="X" selected>X</option>
- <option value="" />
-</select>
-<select id="select-with-fake-placeholder-size2-multiple" name="victim" multiple size="2" required>
- <option value="" />
- <option value="X" selected>X</option>
-</select>
-<select id="select-without-fake-placeholder-size2-multiple" name="victim" multiple size="2" required>
- <option value="X" selected>X</option>
- <option value="" />
-</select>
-<select id=select-selecting-by-key required>
- <option value="" selected/>
- <option>a</option>
-</select>
-<select id=select-selecting-by-key-2 required>
- <option value="" selected/>
- <option accesskey="1">a</option>
-</select>
-</div>
-<script language="JavaScript" type="text/javascript">
- function valueMissingFor(id) {
- return document.getElementById(id).validity.valueMissing;
- }
-
- description("This test checks validity.valueMissing with some values or options with some values selected.");
-
- shouldBeFalse('valueMissingFor("input")');
- shouldBeFalse('valueMissingFor("textarea")');
- shouldBeFalse('valueMissingFor("select-with-placeholder")');
- shouldBeFalse('valueMissingFor("select-without-placeholder")');
- shouldBeFalse('valueMissingFor("select-with-fake-placeholder-size2")');
- shouldBeFalse('valueMissingFor("select-without-fake-placeholder-size2")');
- shouldBeFalse('valueMissingFor("select-with-fake-placeholder-multiple")');
- shouldBeFalse('valueMissingFor("select-without-fake-placeholder-multiple")');
- shouldBeFalse('valueMissingFor("select-with-fake-placeholder-size2-multiple")');
- shouldBeFalse('valueMissingFor("select-without-fake-placeholder-size2-multiple")');
-
- // Need to use eventSender instead of initKeyboardEvent() because we can't
- // make an event which returns a correct value for keyCode by initKeyboardEvent().
- if (window.eventSender) {
- debug("Updating valueMissing state by a key input:")
- // Select by type-ahead.
- var select = document.getElementById("select-selecting-by-key");
- shouldBeTrue('valueMissingFor("select-selecting-by-key")');
- select.focus();
- eventSender.keyDown("a");
- shouldBe('select.value', '"a"');
- shouldBeFalse('valueMissingFor("select-selecting-by-key")');
-
- // Select by accesskey.
- select = document.getElementById("select-selecting-by-key-2");
- shouldBeTrue('valueMissingFor("select-selecting-by-key-2")');
- select.focus();
- eventSender.keyDown("1", "accessKey");
- shouldBe('select.value', '"a"');
- shouldBeFalse('valueMissingFor("select-selecting-by-key-2")');
- } else {
- debug('There are tests using eventSender.');
- }
-
- document.body.removeChild(document.getElementById('parent'));
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698