mirror of
https://github.com/tc39/test262.git
synced 2025-11-14 10:49:52 +01:00
31 lines
794 B
JavaScript
31 lines
794 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.Segmenter
|
|
description: Checks handling of invalid value for the localeMatcher option to the Segmenter constructor.
|
|
info: |
|
|
Intl.Segmenter ([ locales [ , options ]])
|
|
|
|
7. Let matcher be ? GetOption(options, "localeMatcher", "string", «"lookup", "best fit"», "best fit").
|
|
features: [Intl.Segmenter]
|
|
---*/
|
|
|
|
const invalidOptions = [
|
|
null,
|
|
1,
|
|
"",
|
|
"Lookup",
|
|
"LOOKUP",
|
|
"lookup\0",
|
|
"Best fit",
|
|
"BEST FIT",
|
|
"best\u00a0fit",
|
|
];
|
|
|
|
for (const localeMatcher of invalidOptions) {
|
|
assert.throws(RangeError, function() {
|
|
new Intl.Segmenter([], { localeMatcher });
|
|
}, `${localeMatcher} is an invalid localeMatcher option value`);
|
|
}
|