From e22ef5d9017c44cad97ae541fefce76cc455edcb Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Mon, 16 Mar 2015 23:05:36 -0400 Subject: [PATCH] Tests: Expand CSS relative adjustment tolerance for IE Ref 48be675200e817f40fa8ec25da1be2ab0839d28d --- test/unit/css.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/css.js b/test/unit/css.js index e97e16d6b..3117b12d7 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -218,9 +218,9 @@ test( "css() non-px relative values (gh-1711)", 17, function() { $child.css( prop, adjustment ); cssCurrent = parseFloat( $child.css( prop ) ); - // Require a difference of less than one pixel + // Require a difference of no more than one pixel difference = Math.abs( cssCurrent - expected ); - if ( difference < 1 ) { + if ( difference <= 1 ) { ok( true, message ); // ...or fail with actual and expected values -- 2.39.5