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.bot@gmail.com> on 2013-02-15
* inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@142978
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-02-15 Sheriff Bot <webkit.review.bot@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.jensen@digia.com>
Simplify hitTestResultAtPoint and nodesFromRect APIs
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();
/**
* @constructor
* @extends {WebInspector.PropertiesSection}
- * @param {!WebInspector.ComputedStyleSidebarPane} parentPane
+ * @param {!WebInspector.StylesSidebarPane} parentPane
* @param {!Object} styleRule
* @param {!Object.<string, boolean>} usedProperties
*/