We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd3dce commit 483fc8cCopy full SHA for 483fc8c
tests/unit-global/es.data-view.js
@@ -34,7 +34,6 @@ QUnit.test('DataView', assert => {
34
assert.throws(() => new DataView(new ArrayBuffer(8), 0, -1), RangeError, 'negative byteLength throws RangeError');
35
// Android ~ 4.0
36
assert.throws(() => DataView(1), TypeError, 'throws without `new`');
37
-
38
} else {
39
// FF bug - TypeError instead of RangeError
40
assert.throws(() => new DataView(new ArrayBuffer(8), -1), 'If offset < 0, throw a RangeError exception');
0 commit comments