| Index: third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.html b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.html
|
| index ec600f260856344544cf600db035fad92ca3e726..104bd092a9724a937f0130a7dce4c221708168e8 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.html
|
| @@ -13,13 +13,13 @@ var test = function()
|
| return { width: function() { return width; }, title: title, toString: toString };
|
| }
|
|
|
| - var tabbedPane = new WebInspector.TabbedPane();
|
| + var tabbedPane = new UI.TabbedPane();
|
| tabbedPane.setAllowTabReorder(true, true);
|
|
|
| var dropDownButtonMeasuredWidth = 10;
|
| function getTabsToShowAndDumpResults(tabsOrdered, tabsHistory, totalWidth)
|
| {
|
| - var tabsToShowIndexes = WebInspector.TabbedPane.prototype._tabsToShowIndexes.call(tabbedPane, tabsOrdered, tabsHistory, totalWidth, dropDownButtonMeasuredWidth);
|
| + var tabsToShowIndexes = UI.TabbedPane.prototype._tabsToShowIndexes.call(tabbedPane, tabsOrdered, tabsHistory, totalWidth, dropDownButtonMeasuredWidth);
|
| InspectorTest.addResult(" tabsToShowIndexes = [" + String(tabsToShowIndexes) + "]");
|
| }
|
|
|
|
|