Changes between Initial Version and Version 3 of Ticket #15098
- Timestamp:
- May 16, 2014, 1:10:35 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15098
-
Property
Status
changed from
new
toopen
-
Property
Status
changed from
-
Ticket #15098 – Description
initial v3 5 5 6 6 @curCSS 7 > ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; 7 {{{ 8 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; 9 }}} 8 10 9 11 It used to use window.getComputedStyle regardless of which document owned the node, and it now uses the (seemingly more correct) ownerDocument.defaultView to access the relevant window (e.g. when inside an iframe or popup) and call getComputedStyle there.