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

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

Issue 2205123003: DevTools: introduce view locations, allow opening views by id. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed 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 352a7f9213df3cdcc5cff9b8f5b376d85aa3b91c..c22f5f6b681dc737d411f4cbeb0f73062c9b2317 100644
--- a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
+++ b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-closeable-persistence.html
@@ -9,18 +9,18 @@ var test = function()
InspectorTest.addResult("Closeable tabs to restore: " + JSON.stringify(tabbedPaneController._closeableTabSetting.get()));
}
- var tabbedPaneController = WebInspector.inspectorView._drawer._extensibleTabbedPane;
+ var tabbedPaneController = WebInspector.inspectorView._drawerTabbedPane;
logPersistenceSetting();
// Show a closeable tab.
- tabbedPaneController.showTab("sensors");
+ tabbedPaneController.showView("sensors");
logPersistenceSetting();
- tabbedPaneController.showTab("sensors");
+ tabbedPaneController.showView("sensors");
logPersistenceSetting();
// Show a permanent tab.
- tabbedPaneController.showTab("console");
+ tabbedPaneController.showView("console");
logPersistenceSetting();
// Show temporary tab.
- tabbedPaneController.showTab("sources.history");
+ tabbedPaneController.showView("sources.history");
logPersistenceSetting();
// Close closeable tab.
tabbedPaneController._tabbedPane.closeTab("sensors");

Powered by Google App Engine
This is Rietveld 408576698