test262/test/built-ins/ShadowRealm/descriptor.js

16 lines
450 B
JavaScript
Raw Normal View History

// Copyright (C) 2021 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2021-09-02 17:07:19 +02:00
esid: sec-shadowrealm-constructor
description: >
2021-09-02 17:07:19 +02:00
The ShadowRealm constructor is the initial value of the "ShadowRealm" property of the global object.
includes: [propertyHelper.js]
features: [ShadowRealm]
---*/
2021-09-02 17:07:19 +02:00
verifyProperty(this, "ShadowRealm", {
2021-07-19 19:26:09 +02:00
enumerable: false,
writable: true,
configurable: true,
});