diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY')
6 files changed, 68 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A1.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A1.js new file mode 100644 index 0000000000..952ffa04ba --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A1.js @@ -0,0 +1,11 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: Number.POSITIVE_INFINITY is +Infinity +es5id: 15.7.3.6_A1 +description: Checking sign and finiteness of Number.POSITIVE_INFINITY +---*/ +assert.sameValue(isFinite(Number.POSITIVE_INFINITY), false, 'isFinite(Number.POSITIVE_INFINITY) must return false'); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A2.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A2.js new file mode 100644 index 0000000000..f4cb7e4165 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A2.js @@ -0,0 +1,21 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: Number.POSITIVE_INFINITY is ReadOnly +es5id: 15.7.3.6_A2 +description: Checking if varying Number.POSITIVE_INFINITY fails +includes: [propertyHelper.js] +---*/ + +// CHECK#1 +verifyNotWritable(Number, "POSITIVE_INFINITY", null, 1); + +assert( + !isFinite(Number.POSITIVE_INFINITY), + 'The value of !isFinite(Number.POSITIVE_INFINITY) is expected to be true' +); + +// TODO: Convert to verifyProperty() format. + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/browser.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/browser.js new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/browser.js diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/prop-desc.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/prop-desc.js new file mode 100644 index 0000000000..1f3ceb0ce6 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/prop-desc.js @@ -0,0 +1,20 @@ +// Copyright (C) 2016 The V8 Project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-number.positive_infinity +description: > + "POSITIVE_INFINITY" property of Number +info: | + Number.POSITIVE_INFINITY + + This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, + [[Configurable]]: false }. +includes: [propertyHelper.js] +---*/ + +verifyNotEnumerable(Number, "POSITIVE_INFINITY"); +verifyNotWritable(Number, "POSITIVE_INFINITY"); +verifyNotConfigurable(Number, "POSITIVE_INFINITY"); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/shell.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/shell.js new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/shell.js diff --git a/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/value.js b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/value.js new file mode 100644 index 0000000000..4bb44cf491 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/value.js @@ -0,0 +1,16 @@ +// Copyright (C) 2016 The V8 Project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-number.positive_infinity +description: > + The value of Number.POSITIVE_INFINITY is +Infinity +info: | + Number.POSITIVE_INFINITY + + The value of Number.POSITIVE_INFINITY is +∞. +---*/ + +assert.sameValue(Number.POSITIVE_INFINITY, Infinity); + +reportCompare(0, 0); |