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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select-type-ahead-list-box-no-selection.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-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>

Powered by Google App Engine
This is Rietveld 408576698