Changeset 119469 in webkit
- Timestamp:
- Jun 5, 2012, 1:56:24 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/inspector/elements/elements-panel-styles-expected.txt (modified) (2 diffs)
-
LayoutTests/inspector/elements/elements-panel-styles.html (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/inspector/front-end/StylesSidebarPane.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r119467 r119469 1 2012-06-05 Alexander Pavlov <apavlov@chromium.org> 2 3 Web Inspector: "-webkit"-prefixed properties are considered inherited in the Computed Style pane 4 https://bugs.webkit.org/show_bug.cgi?id=88257 5 6 Reviewed by Pavel Feldman. 7 8 * inspector/elements/elements-panel-styles-expected.txt: 9 * inspector/elements/elements-panel-styles.html: 10 1 11 2012-06-05 Kenichi Ishibashi <bashi@chromium.org> 2 12 -
trunk/LayoutTests/inspector/elements/elements-panel-styles-expected.txt
r117958 r119469 2 2 3 3 [expanded] 4 -webkit-font-smoothing: subpixel-antialiased; 5 element.style - subpixel-antialiased 4 6 border-bottom-left-radius: 5px; 5 7 .foo - 5px elements-panel-styles.css:14 … … 38 40 element.style { () 39 41 display: none; 42 -webkit-font-smoothing: subpixel-antialiased; 40 43 41 44 ======== Matched CSS Rules ======== -
trunk/LayoutTests/inspector/elements/elements-panel-styles.html
r107055 r119469 27 27 28 28 <div id="container"> 29 <div id="foo" class="foo" style="display:none " align="left">Foo</div>29 <div id="foo" class="foo" style="display:none; -webkit-font-smoothing: subpixel-antialiased;" align="left">Foo</div> 30 30 </div> 31 31 -
trunk/Source/WebCore/ChangeLog
r119467 r119469 1 2012-06-05 Alexander Pavlov <apavlov@chromium.org> 2 3 Web Inspector: "-webkit"-prefixed properties are considered inherited in the Computed Style pane 4 https://bugs.webkit.org/show_bug.cgi?id=88257 5 6 Reviewed by Pavel Feldman. 7 8 Canonical names for properties should be used when checking if they are inherited (since only canonical names 9 are put into the usedProperties set). 10 11 * inspector/front-end/StylesSidebarPane.js: 12 (WebInspector.ComputedStylePropertiesSection.prototype._isPropertyInherited): 13 1 14 2012-06-05 Kenichi Ishibashi <bashi@chromium.org> 2 15 -
trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js
r118367 r119469 1398 1398 _isPropertyInherited: function(propertyName) 1399 1399 { 1400 return !(propertyName in this._usedProperties) && !(propertyName in this._alwaysShowComputedProperties); 1400 var canonicalName = WebInspector.StylesSidebarPane.canonicalPropertyName(propertyName); 1401 return !(canonicalName in this._usedProperties) && !(canonicalName in this._alwaysShowComputedProperties); 1401 1402 }, 1402 1403
Note:
See TracChangeset
for help on using the changeset viewer.