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

Unified Diff: LayoutTests/inspector/extensions/extensions-panel.html

Issue 720223002: DevTools: only allow status bar items in status bars. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 6 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
« no previous file with comments | « no previous file | Source/devtools/front_end/extensions/ExtensionPanel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/extensions/extensions-panel.html
diff --git a/LayoutTests/inspector/extensions/extensions-panel.html b/LayoutTests/inspector/extensions/extensions-panel.html
index e81e5f49356724391f1a6a225661fb304e9e5081..3c8b46a4d0479ba60e1e4034b8f25ac6b538cd35 100644
--- a/LayoutTests/inspector/extensions/extensions-panel.html
+++ b/LayoutTests/inspector/extensions/extensions-panel.html
@@ -26,7 +26,7 @@ function initialize_extensionsPanelTest()
InspectorTest.dumpStatusBarButtons = function()
{
var panel = WebInspector.inspectorView.currentPanel();
- var items = panel._panelStatusBarElement.children;
+ var items = panel._panelStatusBar.element.children;
InspectorTest.addResult("Status bar buttons state:");
for (var i = 0; i < items.length; ++i) {
var item = items[i];
@@ -37,13 +37,13 @@ function initialize_extensionsPanelTest()
// Strip url(...) and prefix of the URL within, leave just last 3 components.
var url = item.style.backgroundImage.replace(/^url\(.*(([/][^/]*){3}[^/)]*)\)$/, "...$1");
InspectorTest.addResult("status bar item " + i + ", icon: " + url + ", tooltip: '" + item.title + "', disabled: " + item.disabled);
- }
+ }
}
InspectorTest.clickButton = function(index)
{
var panel = WebInspector.inspectorView.currentPanel();
- panel._panelStatusBarElement.children[index].click();
+ panel._panelStatusBar.element.children[index].click();
}
InspectorTest.clickOnURL = function()
« no previous file with comments | « no previous file | Source/devtools/front_end/extensions/ExtensionPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698