Enable strict mode testing for sm/DataView

This commit is contained in:
André Bargull 2025-04-30 14:16:24 +02:00 committed by Philip Chimento
parent 2fce7b7985
commit 6e1eba2a09
3 changed files with 1 additions and 7 deletions

View File

@ -2,16 +2,14 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
flags:
- noStrict
description: |
pending
esid: pending
---*/
var buf = new ArrayBuffer([1,2]);
var bufView = new DataView(buf);
$262.detachArrayBuffer(buf);
assert.throws(TypeError, () => bufView.getInt8(0));

View File

@ -2,8 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
flags:
- noStrict
description: |
pending
esid: pending

View File

@ -2,8 +2,6 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
flags:
- noStrict
description: |
DataView getters should have get prefix
esid: pending