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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html

Issue 2746823002: Correct elementMatches filter for datalist.options (Closed)
Patch Set: Remove superfluous test, added filter to callees. Created 3 years, 9 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/datalist/datalist.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html b/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html
deleted file mode 100644
index 7528ab963c1e0346062e0567e78a70392e094578..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/datalist/datalist.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<datalist id="dl1">
- The choices are
- <option>value1</option>,
- <option value="value2">label2</option>,
- <option label="label3">value3</option>, and
- <option id="o4">value4</option>.
- <option></option>
-</datalist>
-
-<script>
-description('Test for the datalist element.');
-
-var datalist = document.getElementById('dl1');
-// An option element with empty value is not included.
-shouldBe('datalist.options.length', '4');
-
-document.getElementById('o4').disabled = true;
-// A disabled option element is not included.
-shouldBe('datalist.options.length', '3');
-// After datalist is implemented, the expected text should not contain the
-// text in the datalist element.
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698