Title: [142978] trunk/Source/WebCore
Revision
142978
Author
commit-qu...@webkit.org
Date
2013-02-15 03:40:27 -0800 (Fri, 15 Feb 2013)

Log Message

Unreviewed, rolling out r142876.
http://trac.webkit.org/changeset/142876
https://bugs.webkit.org/show_bug.cgi?id=109920

Broke relative URL linkification in the computed styles pane
(Requested by apavlov on #webkit).

Patch by Sheriff Bot <webkit.review....@gmail.com> on 2013-02-15

* inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142977 => 142978)


--- trunk/Source/WebCore/ChangeLog	2013-02-15 10:46:33 UTC (rev 142977)
+++ trunk/Source/WebCore/ChangeLog	2013-02-15 11:40:27 UTC (rev 142978)
@@ -1,3 +1,15 @@
+2013-02-15  Sheriff Bot  <webkit.review....@gmail.com>
+
+        Unreviewed, rolling out r142876.
+        http://trac.webkit.org/changeset/142876
+        https://bugs.webkit.org/show_bug.cgi?id=109920
+
+        Broke relative URL linkification in the computed styles pane
+        (Requested by apavlov on #webkit).
+
+        * inspector/front-end/StylesSidebarPane.js:
+        (WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules):
+
 2013-02-15  Allan Sandfeld Jensen  <allan.jen...@digia.com>
 
         Simplify hitTestResultAtPoint and nodesFromRect APIs

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


--- trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2013-02-15 10:46:33 UTC (rev 142977)
+++ trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2013-02-15 11:40:27 UTC (rev 142978)
@@ -605,7 +605,7 @@
                 editable = true;
 
             if (computedStyle)
-                var section = new WebInspector.ComputedStylePropertiesSection(this._computedStylePane, styleRule, usedProperties);
+                var section = new WebInspector.ComputedStylePropertiesSection(this, styleRule, usedProperties);
             else {
                 var section = new WebInspector.StylePropertiesSection(this, styleRule, editable, styleRule.isInherited, lastWasSeparator);
                 section._markSelectorMatches();
@@ -1347,7 +1347,7 @@
 /**
  * @constructor
  * @extends {WebInspector.PropertiesSection}
- * @param {!WebInspector.ComputedStyleSidebarPane} parentPane
+ * @param {!WebInspector.StylesSidebarPane} parentPane
  * @param {!Object} styleRule
  * @param {!Object.<string, boolean>} usedProperties
  */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to