| 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");
|
|
|