Index: third_party/WebKit/LayoutTests/fast/forms/select-type-ahead-list-box-no-selection.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-type-ahead-list-box-no-selection.html b/third_party/WebKit/LayoutTests/fast/forms/select-type-ahead-list-box-no-selection.html |
deleted file mode 100644 |
index da23f8b0e5bf81abef150ef99c8f0c8e5a643077..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/select-type-ahead-list-box-no-selection.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<p> |
- Test for <i><a href="rdar://problem/5879597">rdar://problem/5879597</a> |
- Type-to-select in lists with no initial selection can crash</i>. |
-</p> |
-<select size="3" id="list"> |
-<option>One</option> |
-<option>Two</option> |
-<option>Three</option> |
-<option>Four</option> |
-<option>Five</option> |
-</select> |
-<div id="result">To run interactively, tab to list and type "12" quickly. If it doesn't crash, the test passed.</div> |
-<script> |
- if (window.testRunner) { |
- testRunner.dumpAsText(); |
- var menu = document.getElementById("list"); |
- menu.focus(); |
- eventSender.keyDown("1"); |
- eventSender.keyDown("2"); |
- var result = document.getElementById("result"); |
- result.innerText = "SUCCESS"; |
- } |
-</script> |