fb3a854eb7
Somehow we have no-NO-NY locale data in ICU and cause problem. Bug: v8:11595 Change-Id: I68ba4c4c219bb3fbc88976f901a86219c44ea265 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2782602 Reviewed-by: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Shu-yu Guo <syg@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/master@{#73818}
24 lines
616 B
JavaScript
24 lines
616 B
JavaScript
// Copyright 2021 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_best_fit_matcher
|
|
|
|
const intl_objects = [
|
|
Intl.Collator,
|
|
Intl.DateTimeFormat,
|
|
Intl.DisplayNames,
|
|
Intl.ListFormat,
|
|
Intl.NumberFormat,
|
|
Intl.PluralRules,
|
|
Intl.RelativeTimeFormat,
|
|
Intl.Segmenter,
|
|
];
|
|
|
|
// Just ensure the f.supportedLocalesOf won't cause crash.
|
|
intl_objects.forEach(f => {
|
|
let supported = f.supportedLocalesOf(["en"]);
|
|
assertEquals(1, supported.length);
|
|
assertEquals("en", supported[0]);
|
|
});
|