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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/console-show-all-messages.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html b/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
index fbb08c2a3a211971973b1c2a00c3b5d1a1e956b8..5765551c6947a83ae5a6a7ebe6a387f560702c0e 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console-show-all-messages.html
@@ -7,12 +7,12 @@ console.log("message from page!");
function test()
{
- var checkbox = WebInspector.ConsoleView.instance()._showAllMessagesCheckbox.inputElement;
+ var checkbox = Console.ConsoleView.instance()._showAllMessagesCheckbox.inputElement;
//we can't use usual InspectorTest.dumpConsoleMessages(), because it dumps url of message and it flakes in case of iframe
function dumpVisibleConsoleMessageText()
{
- var messageViews = WebInspector.ConsoleView.instance()._visibleViewMessages;
+ var messageViews = Console.ConsoleView.instance()._visibleViewMessages;
for (var i = 0; i < messageViews.length; ++i) {
InspectorTest.addResult(messageViews[i].consoleMessage().messageText);
}

Powered by Google App Engine
This is Rietveld 408576698