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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tabbed-pane-tabs-to-show.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/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) + "]");
}

Powered by Google App Engine
This is Rietveld 408576698