From: Richard Gibson Date: Tue, 17 Mar 2015 03:05:36 +0000 (-0400) Subject: Tests: Expand CSS relative adjustment tolerance for IE X-Git-Tag: 3.0.0-alpha1+compat~100 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9d255b3e50ef2fce9c4f96cb3a3b2c4e71e63068;p=jquery.git Tests: Expand CSS relative adjustment tolerance for IE Ref 48be675200e817f40fa8ec25da1be2ab0839d28d Ref 4a8000b51a9854e21361e435e4c9b9cbd8ac458a (cherry picked from commit e22ef5d9017c44cad97ae541fefce76cc455edcb) --- diff --git a/test/unit/css.js b/test/unit/css.js index 1fdbfd78a..7f4addded 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -232,9 +232,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