Changeset 243256 in webkit


Ignore:
Timestamp:
Mar 20, 2019 4:34:00 PM (5 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Styles: enabledProperties don't get invalidated after removing property
https://bugs.webkit.org/show_bug.cgi?id=196038

Reviewed by Timothy Hatcher.

  • UserInterface/Models/CSSStyleDeclaration.js:

(WI.CSSStyleDeclaration.prototype.shiftPropertiesAfter):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r243244 r243256  
     12019-03-20  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Styles: enabledProperties don't get invalidated after removing property
     4        https://bugs.webkit.org/show_bug.cgi?id=196038
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Models/CSSStyleDeclaration.js:
     9        (WI.CSSStyleDeclaration.prototype.shiftPropertiesAfter):
     10
    1112019-03-20  Devin Rousso  <drousso@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Models/CSSStyleDeclaration.js

    r243038 r243256  
    414414
    415415        // Invalidate cached properties.
     416        this._enabledProperties = null;
    416417        this._visibleProperties = null;
    417418    }
Note: See TracChangeset for help on using the changeset viewer.