mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
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
This commit is contained in:
parent
7eb0019640
commit
e7ffe1f135
@ -1456,13 +1456,7 @@ QUnit.testUnlessIE( "jQuery.parseXML - error reporting", function( assert ) {
|
|||||||
column = columnMatch && columnMatch[ 1 ];
|
column = columnMatch && columnMatch[ 1 ];
|
||||||
|
|
||||||
assert.strictEqual( line, "1", "reports error line" );
|
assert.strictEqual( line, "1", "reports error line" );
|
||||||
|
assert.strictEqual( column, "11", "reports error column" );
|
||||||
// Support: Firefox 96-97+
|
|
||||||
// Newer Firefox may report the column number smaller by 2 than it should.
|
|
||||||
// Accept both values until the issue is fixed.
|
|
||||||
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1751796
|
|
||||||
assert.ok( [ "9", "11" ].indexOf( column ) > -1, "reports error column" );
|
|
||||||
// assert.strictEqual( column, "11", "reports error column" );
|
|
||||||
} );
|
} );
|
||||||
|
|
||||||
testIframe(
|
testIframe(
|
||||||
|
Loading…
Reference in New Issue
Block a user