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 1855363002: DevTools: [ux regression] There is no way to clear console history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
Patch Set: Created 4 years, 8 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/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 8a5bdccbc1c04935ae7e665717810a3a78231e5d..4566896dc3116b0f0488ce821c107c5ba751d7eb 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.ConsolePanel._view()._visibleViewMessages;
+ var messages = WebInspector.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.ConsolePanel._view()._viewport.refresh();
+ WebInspector.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