Title: [90499] trunk/Source/WebCore
Revision
90499
Author
[email protected]
Date
2011-07-06 14:19:22 -0700 (Wed, 06 Jul 2011)

Log Message

2011-07-06  Pavel Feldman  <[email protected]>

        Not reviewed: Web Inspector: fixing typo introduced in the r90397.

        * inspector/front-end/StylesSidebarPane.js:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90498 => 90499)


--- trunk/Source/WebCore/ChangeLog	2011-07-06 21:16:18 UTC (rev 90498)
+++ trunk/Source/WebCore/ChangeLog	2011-07-06 21:19:22 UTC (rev 90499)
@@ -1,3 +1,9 @@
+2011-07-06  Pavel Feldman  <[email protected]>
+
+        Not reviewed: Web Inspector: fixing typo introduced in the r90397.
+
+        * inspector/front-end/StylesSidebarPane.js:
+
 2011-07-06  Mike Reed  <[email protected]>
 
         [skia] don't include deprecated header

Modified: trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js (90498 => 90499)


--- trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2011-07-06 21:16:18 UTC (rev 90498)
+++ trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2011-07-06 21:19:22 UTC (rev 90499)
@@ -742,7 +742,7 @@
     this.titleElement.appendChild(showInheritedCheckbox.element);
 
     if (WebInspector.settings.showInheritedComputedStyleProperties.get()) {
-        this._sectionsContainer.addStyleClass("show-inherited");
+        this.bodyElement.addStyleClass("show-inherited");
         showInheritedCheckbox.checked = true;
     }
 
@@ -750,9 +750,9 @@
     {
         WebInspector.settings.showInheritedComputedStyleProperties.set(showInheritedCheckbox.checked);
         if (WebInspector.settings.showInheritedComputedStyleProperties.get())
-            this._sectionsContainer.addStyleClass("show-inherited");
+            this.bodyElement.addStyleClass("show-inherited");
         else
-            this._sectionsContainer.removeStyleClass("show-inherited");
+            this.bodyElement.removeStyleClass("show-inherited");
     }
 
     showInheritedCheckbox.addEventListener(showInheritedToggleFunction.bind(this));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to