45fe356e24
Sync w/ https://github.com/tc39/proposal-intl-segmenter/pull/60 Bug: v8:8717 Change-Id: I98fe9e88367a611c14c82195222c8fe8a52e4bc8 Reviewed-on: https://chromium-review.googlesource.com/c/1422749 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/master@{#59016}
30 lines
533 B
JavaScript
30 lines
533 B
JavaScript
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --harmony-intl-segmenter
|
|
|
|
let invalid_lb = [
|
|
"invalid",
|
|
"abce",
|
|
"breakall",
|
|
"keepall",
|
|
"none",
|
|
"standard",
|
|
"strict",
|
|
"normal",
|
|
"loose",
|
|
];
|
|
|
|
let locales = [
|
|
"en",
|
|
"ja",
|
|
"zh",
|
|
];
|
|
|
|
invalid_lb.forEach(function(lb) {
|
|
let df = new Intl.Segmenter(["en-u-lb-" + lb + "-fo-obar"]);
|
|
assertEquals("en", df.resolvedOptions().locale);
|
|
}
|
|
);
|