diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-07-01 23:20:32 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-07-01 23:20:32 +0200 |
commit | 8e4aac8cb03ffb88373ea99629165d82ff5eccdd (patch) | |
tree | f054fed4c6782dd10f0f3a2901743badf6760324 /src/css.js | |
parent | a44cfa00665d21c3197e25c2d63741dc15f6ffb9 (diff) | |
download | jquery-8e4aac8cb03ffb88373ea99629165d82ff5eccdd.tar.gz jquery-8e4aac8cb03ffb88373ea99629165d82ff5eccdd.zip |
CSS: Improve a comment explaining IE11 fullscreen bug
Diffstat (limited to 'src/css.js')
-rw-r--r-- | src/css.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/css.js b/src/css.js index 922f44162..373fdcb7e 100644 --- a/src/css.js +++ b/src/css.js @@ -114,7 +114,8 @@ function getWidthOrHeight( elem, name, extra ) { isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // Support: IE11 only - // Fix for edge case in IE 11. See gh-1764 + // In IE 11 fullscreen elements inside of an iframe have + // 100x too small dimensions (gh-1764). if ( document.msFullscreenElement && window.top !== window ) { // Support: IE11 only // Running getBoundingClientRect on a disconnected node |