Index: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/resources/console-clear-arguments-test.js |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/resources/console-clear-arguments-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/resources/console-clear-arguments-test.js |
deleted file mode 100644 |
index 3e76c91f46233a55f246d940c9b31ae0356061e7..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/http/tests/inspector-enabled/resources/console-clear-arguments-test.js |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-function print(text) |
-{ |
- var output = document.getElementById("output"); |
- var div = document.createElement("div"); |
- div.textContent = text; |
- output.appendChild(div); |
-} |
- |
-function dumpConsoleMessageCounts() |
-{ |
- var consoleMessageCount = window.internals.numberOfConsoleMessages(document); |
- if (consoleMessageCount === 3) |
- print("PASSED: found argument counts for 3 messages"); |
- else |
- print("FAILED: unexpected number of messages: " + consoleMessageCount); |
- |
- var consoleMessageWithArgumentsCount = window.internals.numberOfConsoleMessagesWithArguments(document); |
- if (consoleMessageWithArgumentsCount === 0) |
- print("PASSED: no messages with arguments"); |
- else |
- print("FAILED: unexpected number of messages with arguments: " + consoleMessageWithArgumentsCount); |
-} |