Bug Tracker

Changes between Initial Version and Version 3 of Ticket #15098


Ignore:
Timestamp:
May 16, 2014, 1:10:35 PM (9 years ago)
Author:
dmethvin
Comment:

Ref #14150 which made the change. Heads it's IE, tails it's Firefox.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15098

    • Property Status changed from new to open
  • Ticket #15098 – Description

    initial v3  
    55
    66@curCSS
    7 > ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
     7{{{
     8ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;
     9}}}
    810
    911It 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.