blob: a6eedd84f20349de898a0bf1c7c21acf45f60d9c [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-initializenumberformat
description: >
Exception from accessing the "roundingMode" option for the NumberFormat
constructor should be propagated to the caller
features: [Intl.NumberFormat-v3]
---*/
assert.throws(Test262Error, function() {
new Intl.NumberFormat('en', {
get roundingMode() {
throw new Test262Error();
}
});
});