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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select-set-inner.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-set-inner.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-set-inner.html b/third_party/WebKit/LayoutTests/fast/forms/select-set-inner.html
deleted file mode 100644
index f30658be108e594879eb9424963b3e347a6f2d35..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/select-set-inner.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<html>
-
-<head>
-
-<script>
-
-function test()
-{
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.getElementById('select').length; // cause the <select> element to build a list of options
- document.getElementById('group').innerHTML = ""; // remove an option using innerHTML
- document.getElementById('select').length; // cause the <select> element to use the list of options
- document.getElementById('select').innerHTML = ""; // remove the other option using innerHTML
- document.getElementById('select').length; // cause the <select> element to use the list of options
-
- document.getElementById('result').innerHTML = "PASSED";
-}
-
-</script>
-
-</head>
-
-</html>
-
-<body onload="test()">
-
-<p>This tests a case where removing an option element from a select by using innerHTML would cause a crash.</p>
-
-<p id="result">TEST NOT RUN</p>
-
-<select id="select">
- <option>here is one</option>
- <optgroup id="group" label="group"><option>here is another</option></optgroup>
-</select>
-
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698