diff options
Diffstat (limited to 'test/unit/support.js')
-rw-r--r-- | test/unit/support.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index c71d90ca4..bf3f4d26d 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -66,6 +66,16 @@ testIframe( } ); +testIframe( + "Verify correctness of support tests with CSS zoom on the root element", + "support/zoom.html", + function( assert, jQuery, window, document, htmlStyle, support ) { + assert.expect( 1 ); + assert.deepEqual( jQuery.extend( {}, support ), computedSupport, + "Same support properties" ); + } +); + ( function() { var expected, browserKey, userAgent = window.navigator.userAgent, |