diff options
author | Mike Petrovich <michael.c.petrovich@gmail.com> | 2012-10-16 12:22:31 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-10-16 12:30:28 -0400 |
commit | 861476eb3fb5e378fdbb4e86e4737daf6de27f13 (patch) | |
tree | 591ced37acc430b1abac8fadf6e9ee00c5803317 /test/unit | |
parent | 69ce829dfe6805d3ad7b0c6937dba390a0840e0e (diff) | |
download | jquery-861476eb3fb5e378fdbb4e86e4737daf6de27f13.tar.gz jquery-861476eb3fb5e378fdbb4e86e4737daf6de27f13.zip |
Fixes #11635, Explicit overflow:auto is overridden by inline overflow:hidden during animation, closes gh-981
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/support.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 57378a021..fed13c7dd 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -38,6 +38,11 @@ testIframeWithCallback( "A background on the testElement does not cause IE8 to c ok( true, "IE8 does not crash" ); }); +testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlocks", "support/shrinkWrapBlocks.html", function( shrinkWrapBlocks ) { + expect( 1 ); + strictEqual( shrinkWrapBlocks, jQuery.support.shrinkWrapBlocks, "jQuery.support.shrinkWrapBlocks properties are the same" ); +}); + (function() { var userAgent = window.navigator.userAgent, |