diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
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, 76 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..7861346ab3 --- /dev/null +++ b/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A1.js @@ -0,0 +1,19 @@ +// 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 +---*/ + +// CHECK#1 +if (isFinite(Number.POSITIVE_INFINITY) !== false) { + $ERROR('#1: Number.POSITIVE_INFINITY === Not-a-Finite'); +} else { + if ((Number.POSITIVE_INFINITY > 0) !== true) { + $ERROR('#1: Number.POSITIVE_INFINITY === +Infinity'); + } +} + +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..c8cb33d695 --- /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); +if (isFinite(Number.POSITIVE_INFINITY)) { + $ERROR('#1: Number.POSITIVE_INFINITY = 1; Number.POSITIVE_INFINITY === +Infinity'); +} else { + if (Number.POSITIVE_INFINITY <= 0) { + $ERROR('#1: Number.POSITIVE_INFINITY = 1; Number.POSITIVE_INFINITY === +Infinity'); + } +} + +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); |