Source code

Revision control

Copy as Markdown

Other Tools

// Copyright 2018 André Bargull; Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-intl.locale
description: >
Verifies the type check on the tag argument to Intl.Locale.
info: |
Intl.Locale( tag [, options] )
7. If Type(tag) is not String or Object, throw a TypeError exception.
features: [Intl.Locale, Symbol]
---*/
assert.sameValue(typeof Intl.Locale, "function");
assert.throws(TypeError, function() {
new Intl.Locale(Symbol());
}, "Symbol() is an invalid tag value");
reportCompare(0, 0);