ShadowRealm: Relax requirements of globalThis available properties test

The intention of this test is to ensure that all built-in properties of
the global object are also exposed on the ShadowRealm's global object,
without penalizing implementations that don't have all of them
implemented.
Notably, SharedArrayBuffer may still not be (re-)enabled in all
circumstances.
This commit is contained in:
Linus Groh 2022-07-31 13:00:05 +02:00 committed by Ms2ger
parent e9f424b6fc
commit 0f35848794
1 changed files with 9 additions and 1 deletions

View File

@ -35,7 +35,7 @@ assert.sameValue(
const r = new ShadowRealm();
const properties = [
let properties = [
'globalThis',
'Infinity',
'NaN',
@ -95,6 +95,14 @@ const properties = [
'Reflect',
];
// The intention of this test is to ensure that all built-in properties of the
// global object are also exposed on the ShadowRealm's global object, without
// penalizing implementations that don't have all of them implemented. Notably,
// SharedArrayBuffer may still not be (re-)enabled in all circumstances.
properties = properties.filter(name => {
return name in globalThis;
});
const available = properties.filter(name => {
// This test is intentionally not using wrapped functions.
// This test should not depend on wrapped functions.