Skip to content

Commit 965391a

Browse files
committed
Tests: Remove a workaround for a Firefox XML parsing issue
Firefox 96-100 used to report the column number smaller by 2 than it should in the `parsererror` element generated for invalid XML documents. Since that version range is unsupported now and it includes no ESR versions, the workaround can now be dropped. Closes gh-5109 Ref gh-5018 (cherry picked from commit e7ffe1f)
1 parent 8bea1de commit 965391a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

test/unit/core.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -1454,13 +1454,7 @@ QUnit[
14541454
column = columnMatch && columnMatch[ 1 ];
14551455

14561456
assert.strictEqual( line, "1", "reports error line" );
1457-
1458-
// Support: Firefox 96-97+
1459-
// Newer Firefox may report the column number smaller by 2 than it should.
1460-
// Accept both values until the issue is fixed.
1461-
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1751796
1462-
assert.ok( [ "9", "11" ].indexOf( column ) > -1, "reports error column" );
1463-
// assert.strictEqual( column, "11", "reports error column" );
1457+
assert.strictEqual( column, "11", "reports error column" );
14641458
} );
14651459

14661460
testIframe(

0 commit comments

Comments
 (0)