Index: third_party/WebKit/LayoutTests/inspector/console/console-auto-completion.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-auto-completion.html b/third_party/WebKit/LayoutTests/inspector/console/console-auto-completion.html |
deleted file mode 100644 |
index 4ad6de1c092400f8832ccb34c95131bb46688c25..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/inspector/console/console-auto-completion.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../http/tests/inspector/console-test.js"></script> |
-<script> |
- |
-var a = {}; |
-for (var i = 0; i < 1000; ++i) |
- a[i] = "property" + i; |
- |
-function test() |
-{ |
- var consoleView = WebInspector.ConsoleView.instance(); |
- consoleView._prompt.setText("pro"); |
- |
- InspectorTest.addSniffer(consoleView._prompt._suggestBox, "updateSuggestions", suggestionsShown); |
- consoleView._prompt._element.dispatchEvent(new KeyboardEvent("keydown", { key: "p"})); |
- consoleView._prompt._element.dispatchEvent(new InputEvent("input", {})); |
- |
- function suggestionsShown() |
- { |
- consoleView._prompt._element.dispatchEvent(new KeyboardEvent("keydown", { key: "e"})); |
- consoleView._prompt._element.dispatchEvent(new InputEvent("input", {})); |
- setTimeout(keyDownTab, 0); |
- } |
- |
- function keyDownTab() |
- { |
- consoleView._prompt._element.dispatchEvent(new KeyboardEvent("keydown", { key: "Tab" })); |
- InspectorTest.completeTest(); |
- } |
-} |
-</script> |
-</head> |
-<body onload="runTest()"> |
-<p>Tests that TextPrompt doesn't throw exception on some event sequence. crbug.com/587683</p> |
-</body> |
-</html> |