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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select-remove-option.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/select-remove-option.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-remove-option.html b/third_party/WebKit/LayoutTests/fast/forms/select-remove-option.html
deleted file mode 100644
index 38a1a0242d8b105b774ebf20ff0f2e0c0cdf4380..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/select-remove-option.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-<title>Test for HTMLSelectElement.remove() on an Options object</title>
-<SCRIPT LANGUAGE=javascript>
-function test() {
- var zipselect = document.getElementById("theSelect");
- var before = zipselect.options.length;
- zipselect.remove(zipselect.options[0]);
- var after = zipselect.options.length;
- if (before > after)
- document.getElementById("theDiv").innerHTML = "test passed"
- if (window.testRunner)
- testRunner.dumpAsText();
-}
-</SCRIPT>
-</head>
-
-<body onload="test();">
-<div id="theDiv">test failed</div>
-<form>
-<select id="theSelect">
- <option value="ALL" selected >hello</option>
-</select>
-</form>
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698