Title: [96586] trunk/Source/WebCore
Revision
96586
Author
pfeld...@chromium.org
Date
2011-10-04 05:56:38 -0700 (Tue, 04 Oct 2011)

Log Message

2011-10-04  Pavel Feldman  <pfeld...@chromium.org>

        Not reviewed: inspector tests fix.

        * inspector/front-end/ExtensionPanel.js:
        (WebInspector.ExtensionPanel):
        (WebInspector.ExtensionPanel.prototype.get toolbarItemLabel):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96585 => 96586)


--- trunk/Source/WebCore/ChangeLog	2011-10-04 12:32:51 UTC (rev 96585)
+++ trunk/Source/WebCore/ChangeLog	2011-10-04 12:56:38 UTC (rev 96586)
@@ -1,3 +1,11 @@
+2011-10-04  Pavel Feldman  <pfeld...@chromium.org>
+
+        Not reviewed: inspector tests fix.
+
+        * inspector/front-end/ExtensionPanel.js:
+        (WebInspector.ExtensionPanel):
+        (WebInspector.ExtensionPanel.prototype.get toolbarItemLabel):
+
 2011-09-29  Pavel Podivilov  <podivi...@chromium.org>
 
         Web Inspector: add compiler source mapping support to RawSourceCode.

Modified: trunk/Source/WebCore/inspector/front-end/ExtensionPanel.js (96585 => 96586)


--- trunk/Source/WebCore/inspector/front-end/ExtensionPanel.js	2011-10-04 12:32:51 UTC (rev 96585)
+++ trunk/Source/WebCore/inspector/front-end/ExtensionPanel.js	2011-10-04 12:56:38 UTC (rev 96586)
@@ -30,13 +30,18 @@
 
 WebInspector.ExtensionPanel = function(id, label, iconURL, options)
 {
-    this.toolbarItemLabel = label;
+    this._toolbarItemLabel = label;
     if (iconURL)
         this._addStyleRule(".toolbar-item." + id + " .toolbar-icon", "background-image: url(" + iconURL + ");");
     WebInspector.Panel.call(this, id);
 }
 
 WebInspector.ExtensionPanel.prototype = {
+    get toolbarItemLabel()
+    {
+        return this._toolbarItemLabel;
+    },
+
     get defaultFocusedElement()
     {
         return this.sidebarTreeElement || this.element;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to