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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/resources/console-clear-arguments-test.js

Issue 2150993004: [DevTools] Remove V8Debugger::consoleMessagesCount. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months 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/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);
-}

Powered by Google App Engine
This is Rietveld 408576698