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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-edit-expanded-tree.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/inspector/console/console-edit-expanded-tree.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-edit-expanded-tree.html b/third_party/WebKit/LayoutTests/inspector/console/console-edit-expanded-tree.html
index 4566896dc3116b0f0488ce821c107c5ba751d7eb..4e85c6175238405999122515d4ca091b265981af 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-edit-expanded-tree.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-edit-expanded-tree.html
@@ -20,7 +20,7 @@ function test()
function onConsoleMessageExpanded()
{
- var messages = WebInspector.ConsoleView.instance()._visibleViewMessages;
+ var messages = Console.ConsoleView.instance()._visibleViewMessages;
for (var i = 0; i < messages.length; ++i) {
var message = messages[i];
var node = message.contentElement();
@@ -36,7 +36,7 @@ function test()
function onTreeElement(treeElement)
{
treeElement._startEditing();
- WebInspector.ConsoleView.instance()._viewport.refresh();
+ Console.ConsoleView.instance()._viewport.refresh();
InspectorTest.addResult("After viewport refresh tree element remains in editing mode: " + !!treeElement._prompt);
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698