We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b24e83b commit be3bd56Copy full SHA for be3bd56
test/unit/core.js
@@ -1454,7 +1454,13 @@ QUnit[
1454
column = columnMatch && columnMatch[ 1 ];
1455
1456
assert.strictEqual( line, "1", "reports error line" );
1457
- assert.strictEqual( column, "11", "reports error column" );
+
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" );
1464
} );
1465
1466
testIframe(
0 commit comments