summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY')
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A1.js11
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/S15.7.3.6_A2.js21
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/browser.js0
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/prop-desc.js20
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/shell.js0
-rw-r--r--js/src/tests/test262/built-ins/Number/POSITIVE_INFINITY/value.js16
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);