Skip to content
Snippets Groups Projects
Commit d258fcd3 authored by Ms2ger's avatar Ms2ger
Browse files

Add a test for Intl.Segmenter.prototype[@@toStringTag].

This was added to the specification in https://github.com/tc39/proposal-intl-segmenter/pull/29.
parent df1e9c62
No related branches found
No related tags found
No related merge requests found
// Copyright 2018 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-intl.Segmenter.prototype-@@tostringtag
description: >
Checks the @@toStringTag property of the Segmenter prototype object.
info: |
Intl.Segmenter.prototype[ @@toStringTag ]
The initial value of the @@toStringTag property is the string value "Intl.Segmenter".
This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Intl.Segmenter, Symbol.toStringTag]
---*/
verifyProperty(Intl.Segmenter.prototype, Symbol.toStringTag, {
value: "Intl.Segmenter",
writable: false,
enumerable: false,
configurable: true,
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment