blob: ca5797b9d4004c5418cf0817b9c626e3628a61ef [file] [log] [blame]
// 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.prototype.format
description: >
When roundingMode is "floor", rounding tends toward negative infinity
features: [Intl.NumberFormat-v3]
includes: [testIntl.js]
---*/
var locales = [
new Intl.NumberFormat().resolvedOptions().locale, 'ar', 'de', 'th', 'ja'
];
var numberingSystems = ['arab', 'latn', 'thai', 'hanidec'];
testNumberFormat(
locales,
numberingSystems,
{useGrouping: false, roundingMode: 'floor', maximumSignificantDigits: 2},
{
'1.101': '1.1',
'1.15': '1.1',
'1.1999': '1.1',
'1.25': '1.2',
'0': '0',
'-0': '-0',
'-1.101': '-1.2',
'-1.15': '-1.2',
'-1.1999': '-1.2',
'-1.25': '-1.3'
}
);