blob: 98d5403ec778acc517f9f7f4cc38b918b8bdd251 [file] [log] [blame]
// 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.supportedLocalesOf
description: Verifies the type of the return value of Intl.Segmenter.supportedLocalesOf().
info: |
Intl.Segmenter.supportedLocalesOf ( locales [, options ])
includes: [propertyHelper.js]
features: [Intl.Segmenter]
---*/
const result = Intl.Segmenter.supportedLocalesOf("en");
assert.sameValue(Array.isArray(result), true,
"Array.isArray() should return true");
assert.sameValue(Object.getPrototypeOf(result), Array.prototype,
"The prototype should be Array.prototype");
assert.sameValue(Object.isExtensible(result), true,
"Object.isExtensible() should return true");
assert.notSameValue(result.length, 0);
for (let i = 0; i < result.length; ++i) {
verifyProperty(result, String(i), {
"writable": true,
"enumerable": true,
"configurable": true,
});
}
verifyProperty(result, "length", {
"enumerable": false,
"configurable": false,
});