blob: 36ab9285ba11c3ba0b0fc3ba8d94f153f2d313a4 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 20.2.1.9
description: >
`Symbol.toStringTag` property descriptor
info: |
The initial value of the @@toStringTag property is the String value
"Math".
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Symbol.toStringTag]
---*/
assert.sameValue(Math[Symbol.toStringTag], 'Math');
verifyNotEnumerable(Math, Symbol.toStringTag);
verifyNotWritable(Math, Symbol.toStringTag);
verifyConfigurable(Math, Symbol.toStringTag);