Skip to content

Commit a612733

Browse files
committed
Tests: Skip a "width/height on a table row with phantom borders" test in Firefox
Firefox 70 & newer fail this test but the issue there is more profound - Firefox doesn't subtract borders from table row computed widths. Closes gh-4537 Ref #4529 Ref https://bugzilla.mozilla.org/show_bug.cgi?id=1590837 Ref w3c/csswg-drafts#4444 (cherry picked from commit c79e1d5)
1 parent 323575f commit a612733

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

test/unit/dimensions.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,14 @@ QUnit.test( "width/height on an inline element with percentage dimensions (gh-36
627627
}
628628
);
629629

630-
QUnit.test( "width/height on a table row with phantom borders (gh-3698)", function( assert ) {
630+
// Support: Firefox 70+
631+
// Firefox 70 & newer fail this test but the issue there is more profound - Firefox doesn't
632+
// subtract borders from table row computed widths.
633+
// See https://github.com/jquery/jquery/issues/4529
634+
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1590837
635+
// See https://github.com/w3c/csswg-drafts/issues/4444
636+
QUnit[ /firefox/i.test( navigator.userAgent ) ? "skip" : "test" ](
637+
"width/height on a table row with phantom borders (gh-3698)", function( assert ) {
631638
assert.expect( 4 );
632639

633640
jQuery( "<table id='gh3698' style='border-collapse: separate; border-spacing: 0;'><tbody>" +

0 commit comments

Comments
 (0)