]> source.dussan.org Git - jquery.git/commitdiff
Conditionally run height/width in iframeTest
authorRick Waldron <waldron.rick@gmail.com>
Wed, 6 Jun 2012 22:13:59 +0000 (18:13 -0400)
committerRick Waldron <waldron.rick@gmail.com>
Wed, 6 Jun 2012 22:13:59 +0000 (18:13 -0400)
test/unit/dimensions.js

index 04411c3192b3c15f2ce4667a9941a62ad63992c4..4a9dd0b4209c511a28495366e180e83f0dd39f55 100644 (file)
@@ -430,8 +430,13 @@ testIframe( "dimensions/documentSmall", "window vs. small document", function( j
 testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document ) {
        expect(2);
 
-       ok( jQuery( document ).height() > jQuery( window ).height(), "document height is larger than window height" );
-       ok( jQuery( document ).width() > jQuery( window ).width(), "document width is larger than window width" );
+       if ( jQuery.fn.height && jQuery.fn. width ) {
+               expect(2);
+               ok( jQuery( document ).height() > jQuery( window ).height(), "document height is larger than window height" );
+               ok( jQuery( document ).width() > jQuery( window ).width(), "document width is larger than window width" );
+       } else {
+               expect(0);
+       }
 });
 
 }