blob: 58c102ebfdbff9b317d62b8946a88c07d6021609 [file] [log] [blame]
// Copyright (C) 2021 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-shadowrealm.prototype-@@tostringtag
description: >
`Symbol.toStringTag` property descriptor
info: |
The initial value of the @@toStringTag property is the String value
"ShadowRealm".
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [ShadowRealm, Symbol.toStringTag]
---*/
verifyProperty(ShadowRealm.prototype, Symbol.toStringTag, {
value: 'ShadowRealm',
enumerable: false,
writable: false,
configurable: true
});