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

Add a test for Object.prototype.toString with Intl.RelativeTimeFormat objects.

parent 6092c08a
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.RelativeTimeFormat.prototype-@@tostringtag
description: >
Checks Object.prototype.toString with Intl.RelativeTimeFormat objects.
info: |
Intl.RelativeTimeFormat.prototype[ @@toStringTag ]
The initial value of the @@toStringTag property is the string value "Intl.RelativeTimeFormat".
features: [Intl.RelativeTimeFormat]
---*/
assert.sameValue(Object.prototype.toString.call(Intl.RelativeTimeFormat.prototype), "[object Intl.RelativeTimeFormat]");
assert.sameValue(Object.prototype.toString.call(new Intl.RelativeTimeFormat("en")), "[object Intl.RelativeTimeFormat]");
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