summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js')
-rw-r--r--js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js b/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js
new file mode 100644
index 0000000000..6a216ef218
--- /dev/null
+++ b/js/src/tests/test262/intl402/PluralRules/prototype/selectRange/nan-arguments-throws.js
@@ -0,0 +1,23 @@
+// Copyright (C) 2021 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.PluralRules.prototype.selectRange
+description: >
+ "selectRange" Throws a RangeError if some of arguments is cast to NaN
+info: |
+ Intl.PluralRules.prototype.selectRange ( start, end )
+ (...)
+ WIP: https://github.com/tc39/proposal-intl-numberformat-v3/pull/76
+
+
+features: [Intl.NumberFormat-v3]
+---*/
+
+const pr = new Intl.PluralRules();
+
+assert.throws(RangeError, () => { pr.selectRange(NaN, 100) }, "NaN/Number");
+assert.throws(RangeError, () => { pr.selectRange(100, NaN) }, "Number/NaN");
+assert.throws(RangeError, () => { pr.selectRange(NaN, NaN) }, "NaN/NaN");
+
+reportCompare(0, 0);