test262/test/intl402/Locale/constructor-options-throwin...

34 lines
727 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: Checks the propagation of exceptions from the options for the Locale constructor.
features: [Intl.Locale]
---*/
function CustomError() {}
const options = [
"language",
"script",
"region",
"calendar",
"collation",
"hourCycle",
"caseFirst",
"numeric",
"numberingSystem",
];
for (const option of options) {
assert.throws(CustomError, () => {
new Intl.Locale("en", {
get [option]() {
throw new CustomError();
}
});
},
`new Intl.Locale("en", {get ${option}() {throw new CustomError();}}) throws CustomError`);
}