Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
CSS: Do not throw on frame elements in FF
IE9-10 throws on elements created in popups (see #14150), FF meanwhile throws on frame elements through "defaultView.getComputedStyle" (see #15098) Use "defaultView" if in the popup which would fix IE issue, use "window.getComputedStyle" which would fix FF issue. And everybody wins, except performance, but who cares right? Fixes #15098 Closes gh-1583
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
define(function() { | ||
return function( elem ) { | ||
return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); | ||
// Support: IE<=11+, Firefox<=30+ (#15098, #14150) | ||
// IE throws on elements created in popups | ||
// FF meanwhile throws on frame elements through "defaultView.getComputedStyle" | ||
if ( elem.ownerDocument.defaultView.opener ) { | ||
return elem.ownerDocument.defaultView.getComputedStyle( elem, null ); | ||
} | ||
|
||
return window.getComputedStyle( elem, null ); | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters