test262/test/intl402/NumberFormat/constructor-options-throwing-getters-rounding-priority.js
Mike Pennisi d071b37f09 Add tests for "Intl NumberFormat v3" proposal
This patch is intended to cover only one aspect of the proposal for
ECMA402: the "new rounding/precision options" feature.
2022-01-04 09:35:13 -05:00

18 lines
505 B
JavaScript

// Copyright 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializenumberformat
description: >
Exception from accessing the "roundingPriority" option for the NumberFormat
constructor should be propagated to the caller
features: [Intl.NumberFormat-v3]
---*/
assert.throws(Test262Error, function() {
new Intl.NumberFormat('en', {
get roundingPriority() {
throw new Test262Error();
}
});
});