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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/console/console-links-in-errors-with-trace.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/console-links-in-errors-with-trace.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/console/console-links-in-errors-with-trace.html b/third_party/WebKit/LayoutTests/http/tests/inspector/console/console-links-in-errors-with-trace.html
index f80e01968c0c8a6f161847a63e353248c09c6053..6c521d95511d4229350f7593e4df4a5050efd876 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/console/console-links-in-errors-with-trace.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/console/console-links-in-errors-with-trace.html
@@ -8,20 +8,20 @@
function test()
{
InspectorTest.evaluateInPage("foo()", step1);
- WebInspector.inspectorView._tabbedPane.addEventListener(WebInspector.TabbedPane.Events.TabSelected, panelChanged);
+ UI.inspectorView._tabbedPane.addEventListener(UI.TabbedPane.Events.TabSelected, panelChanged);
function panelChanged()
{
- InspectorTest.addResult("Panel " + WebInspector.inspectorView._tabbedPane._currentTab.id + " was opened.");
+ InspectorTest.addResult("Panel " + UI.inspectorView._tabbedPane._currentTab.id + " was opened.");
InspectorTest.completeTest();
}
var clickTarget;
function step1()
{
- var firstMessageEl = WebInspector.ConsoleView.instance()._visibleViewMessages[0].element();
+ var firstMessageEl = Console.ConsoleView.instance()._visibleViewMessages[0].element();
clickTarget = firstMessageEl.querySelectorAll(".console-message-text a")[1];
- WebInspector.inspectorView.showPanel("console").then(testClickTarget);
+ UI.inspectorView.showPanel("console").then(testClickTarget);
}
function testClickTarget()

Powered by Google App Engine
This is Rietveld 408576698