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> |