Changeset 142978 in webkit


Ignore:
Timestamp:
Feb 15, 2013 3:40:27 AM (11 years ago)
Author:
commit-queue@webkit.org
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.bot@gmail.com> on 2013-02-15

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142977 r142978  
     12013-02-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r142876.
     4        http://trac.webkit.org/changeset/142876
     5        https://bugs.webkit.org/show_bug.cgi?id=109920
     6
     7        Broke relative URL linkification in the computed styles pane
     8        (Requested by apavlov on #webkit).
     9
     10        * inspector/front-end/StylesSidebarPane.js:
     11        (WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules):
     12
    1132013-02-15  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    214
  • trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js

    r142975 r142978  
    606606
    607607            if (computedStyle)
    608                 var section = new WebInspector.ComputedStylePropertiesSection(this._computedStylePane, styleRule, usedProperties);
     608                var section = new WebInspector.ComputedStylePropertiesSection(this, styleRule, usedProperties);
    609609            else {
    610610                var section = new WebInspector.StylePropertiesSection(this, styleRule, editable, styleRule.isInherited, lastWasSeparator);
     
    13481348 * @constructor
    13491349 * @extends {WebInspector.PropertiesSection}
    1350  * @param {!WebInspector.ComputedStyleSidebarPane} parentPane
     1350 * @param {!WebInspector.StylesSidebarPane} parentPane
    13511351 * @param {!Object} styleRule
    13521352 * @param {!Object.<string, boolean>} usedProperties
Note: See TracChangeset for help on using the changeset viewer.