mirror of https://github.com/tc39/test262.git
21 lines
547 B
JavaScript
21 lines
547 B
JavaScript
// Copyright 2018 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-intl.locale
|
|
description: >
|
|
Intl.Locale instance object extensibility
|
|
info: |
|
|
17 ECMAScript Standard Built-in Objects:
|
|
|
|
Unless specified otherwise, the [[Extensible]] internal slot
|
|
of a built-in object initially has the value true.
|
|
features: [Intl.Locale]
|
|
---*/
|
|
|
|
assert.sameValue(
|
|
Object.isExtensible(new Intl.Locale('en')),
|
|
true,
|
|
"Object.isExtensible(new Intl.Locale('en')) returns true"
|
|
);
|