From 79af1b457baf6e66fff831e7328e06f823445910 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Wed, 6 Jun 2012 23:10:06 -0400 Subject: [PATCH] Remove unnecessary haunted house guards. Signed-off-by: Rick Waldron --- test/unit/dimensions.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js index 377b6f83a..53e37b95d 100644 --- a/test/unit/dimensions.js +++ b/test/unit/dimensions.js @@ -1,4 +1,4 @@ -if ( jQuery.fn.width && jQuery.fn.height ) { +if ( jQuery.fn.width ) { module("dimensions", { teardown: moduleTeardown }); @@ -430,13 +430,8 @@ testIframe( "dimensions/documentSmall", "window vs. small document", function( j testIframe( "dimensions/documentLarge", "window vs. large document", function( jQuery, window, document ) { expect(2); - 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); - } + 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" ); }); } -- 2.39.5