2021-09-25 02:12:20 +02:00
|
|
|
// Copyright 2021 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: sec-intl.numberformat
|
|
|
|
description: Tests that the option roundingPriority is processed correctly.
|
2021-12-04 03:01:17 +01:00
|
|
|
features: [Intl.NumberFormat-v3]
|
|
|
|
includes: [testIntl.js]
|
2021-09-25 02:12:20 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
testOption(
|
|
|
|
Intl.NumberFormat,
|
|
|
|
"roundingPriority",
|
|
|
|
"string",
|
|
|
|
["auto", "morePrecision", "lessPrecision"],
|
|
|
|
"auto"
|
|
|
|
);
|