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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html

Issue 2204303003: DevTools: encapsulate extensible tabbed widget into the view manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 4 years, 4 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/tabbed-pane-closeable-persistence.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
index c22f5f6b681dc737d411f4cbeb0f73062c9b2317..7be8a911019cc0f2e92b70bd11df55ea209911a5 100644
--- a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
+++ b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
@@ -9,7 +9,7 @@ var test = function()
InspectorTest.addResult("Closeable tabs to restore: " + JSON.stringify(tabbedPaneController._closeableTabSetting.get()));
}
- var tabbedPaneController = WebInspector.inspectorView._drawerTabbedPane;
+ var tabbedPaneController = WebInspector.inspectorView._drawerTabbedLocation;
logPersistenceSetting();
// Show a closeable tab.
tabbedPaneController.showView("sensors");
@@ -23,7 +23,7 @@ var test = function()
tabbedPaneController.showView("sources.history");
logPersistenceSetting();
// Close closeable tab.
- tabbedPaneController._tabbedPane.closeTab("sensors");
+ tabbedPaneController.tabbedPane().closeTab("sensors");
logPersistenceSetting();
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698