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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-tabs-order.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/persistence/persistence-tabbed-editor-tabs-order.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-tabs-order.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-tabs-order.html
index 0ae49dcbed4a7e756a6e56d72f7ea74b1c8615f1..31146e5b04df383d988e657bdae6fad68972a8d7 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-tabs-order.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-tabs-order.html
@@ -33,9 +33,9 @@ function test()
function openNetworkFiles(next)
{
Promise.all([
- InspectorTest.waitForUISourceCode("foo.js", WebInspector.projectTypes.Network),
- InspectorTest.waitForUISourceCode("bar.js", WebInspector.projectTypes.Network),
- InspectorTest.waitForUISourceCode("baz.js", WebInspector.projectTypes.Network)
+ InspectorTest.waitForUISourceCode("foo.js", Workspace.projectTypes.Network),
+ InspectorTest.waitForUISourceCode("bar.js", Workspace.projectTypes.Network),
+ InspectorTest.waitForUISourceCode("baz.js", Workspace.projectTypes.Network)
]).then(onUISourceCodes);
function onUISourceCodes(uiSourceCodes)
@@ -70,7 +70,7 @@ function test()
function dumpTabs(title)
{
- var tabbedPane = WebInspector.panels.sources._sourcesView._editorContainer._tabbedPane;
+ var tabbedPane = UI.panels.sources._sourcesView._editorContainer._tabbedPane;
var tabs = tabbedPane._tabs;
InspectorTest.addResult(title);
for (var i = 0; i < tabs.length; ++i) {

Powered by Google App Engine
This is Rietveld 408576698