diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-06-03 18:15:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 18:15:23 +0200 |
commit | 071f6dba6bd1d8db3f36ce4694aab5ff437b9e36 (patch) | |
tree | 1ab73f6ddb8e537726f515caab6bb47566b71da6 /test/unit | |
parent | f2d9fde5f34c83a098fa2074ed808311086d9d23 (diff) | |
download | jquery-071f6dba6bd1d8db3f36ce4694aab5ff437b9e36.tar.gz jquery-071f6dba6bd1d8db3f36ce4694aab5ff437b9e36.zip |
CSS:Tests: Fix tests & support tests under CSS Zoom
Firefox 126+ implements CSS zoom in a way it affects width computed style
very slightly (`100.008px` instead of `100px`); accept that difference.
Add a test for support tests resolving the same under CSS zoom & without one.
That test uncovered Chrome failing the `reliableTrDimensions` support test
under zoom; the test has been fixed.
Fixes gh-5489
Closes gh-5495
Ref gh-5496
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/css.js | 8 | ||||
-rw-r--r-- | test/unit/support.js | 10 |
2 files changed, 16 insertions, 2 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index ea3055f77..a8b7d8e89 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -1381,8 +1381,12 @@ testIframe( "css/cssWidthBrowserZoom.html", function( assert, jQuery, window, document, widthBeforeSet, widthAfterSet ) { assert.expect( 2 ); - assert.strictEqual( widthBeforeSet, "100px", "elem.css('width') works correctly with browser zoom" ); - assert.strictEqual( widthAfterSet, "100px", "elem.css('width', val) works correctly with browser zoom" ); + + // Support: Firefox 126+ + // Newer Firefox implements CSS zoom in a way it affects + // those values slightly. + assert.ok( /^100(?:|\.0\d*)px$/.test( widthBeforeSet ), "elem.css('width') works correctly with browser zoom" ); + assert.ok( /^100(?:|\.0\d*)px$/.test( widthAfterSet ), "elem.css('width', val) works correctly with browser zoom" ); } ); diff --git a/test/unit/support.js b/test/unit/support.js index c71d90ca4..bf3f4d26d 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -66,6 +66,16 @@ testIframe( } ); +testIframe( + "Verify correctness of support tests with CSS zoom on the root element", + "support/zoom.html", + function( assert, jQuery, window, document, htmlStyle, support ) { + assert.expect( 1 ); + assert.deepEqual( jQuery.extend( {}, support ), computedSupport, + "Same support properties" ); + } +); + ( function() { var expected, browserKey, userAgent = window.navigator.userAgent, |