Index: third_party/WebKit/LayoutTests/fast/forms/select-list-box-mouse-focus.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-list-box-mouse-focus.html b/third_party/WebKit/LayoutTests/fast/forms/select-list-box-mouse-focus.html |
deleted file mode 100644 |
index 3c12014ffdbef40ff1ee41d900e298629c87ea1c..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/forms/select-list-box-mouse-focus.html |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-<script> |
-function test() |
-{ |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- var select = document.getElementById("select"); |
- var rect = select.getBoundingClientRect(); |
- var x = rect.left + 10; |
- var y = rect.top + 10; |
- |
- if (window.eventSender) { |
- eventSender.mouseMoveTo(x, y); |
- eventSender.mouseDown(0); |
- } |
-} |
-function reportFocus() |
-{ |
- document.getElementById("result").innerHTML = "PASS"; |
-} |
-</script> |
-<body onload="test()"> |
-<p>The select below should be focused because we dispatched a mouse down event to it.</p> |
-<p id="result">FAIL</p> |
-<select id="select" size="4" onfocus="reportFocus()"> |
- <option>one</option> |
- <option>two</option> |
- <option>three</option> |
- <option>four</option> |
-</select> |
-</body> |