]> source.dussan.org Git - jquery.git/commitdiff
Tests: Fix offset fractions tests in Chrome for Android
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Mon, 23 Sep 2019 22:58:53 +0000 (00:58 +0200)
committerGitHub <noreply@github.com>
Mon, 23 Sep 2019 22:58:53 +0000 (00:58 +0200)
This commit backports a looser assertion from `master` where the browsers passes
offset tests.

Closes gh-4470

test/unit/offset.js

index 2b63ccbd99e3f8c3ac2335f147fbb67590162a15..83edd9fbc39d84efe0c16bc47ea4f688443c21d1 100644 (file)
@@ -806,7 +806,7 @@ QUnit.test( "fractions (see #7730 and #7885)", function( assert ) {
        // Support: Chrome <=45 - 46
        // In recent Chrome these values differ a little.
        assert.ok( Math.abs( result.top - expected.top ) < 0.25, "Check top within 0.25 of expected" );
-       assert.equal( result.left, expected.left, "Check left" );
+       assert.ok( Math.abs( result.left - expected.left ) < 0.25, "Check left within 0.25 of expected" );
 
        div.remove();
 } );