aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/var/getStyles.js
blob: 0d1d51af627f0229d78744d2e735415eff6711f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
define(function() {
	return function( elem ) {
		// 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 );
		}

		return window.getComputedStyle( elem );
	};
});