Changeset 186576 in webkit
- Timestamp:
- Jul 8, 2015, 9:20:35 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r186562 r186576 1 2015-07-08 Devin Rousso <drousso@apple.com> 2 3 Web Inspector: Style sidebar is showing incorrect strikethroughs 4 https://bugs.webkit.org/show_bug.cgi?id=146768 5 6 Reviewed by Timothy Hatcher. 7 8 * UserInterface/Models/DOMNodeStyles.js: 9 (WebInspector.DOMNodeStyles.prototype._markOverriddenProperties): 10 No longer sets the effective property as overridden if the overriding property is anonymous (not visible). 11 1 12 2015-07-08 Devin Rousso <drousso@apple.com> 2 13 -
trunk/Source/WebInspectorUI/UserInterface/Models/DOMNodeStyles.js
r184934 r186576 929 929 } 930 930 931 effectiveProperty.overridden = true; 931 if (!property.anonymous) 932 effectiveProperty.overridden = true; 932 933 } 933 934
Note:
See TracChangeset
for help on using the changeset viewer.