summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js
parentInitial commit. (diff)
downloadfirefox-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/S15.7.2.1_A1.js')
-rw-r--r--js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js b/js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js
new file mode 100644
index 0000000000..be83079545
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Number/S15.7.2.1_A1.js
@@ -0,0 +1,56 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: |
+ When Number is called as part of a new expression it is
+ a constructor: it initialises the newly created object
+es5id: 15.7.2.1_A1
+description: Checking type of the newly created object and it value
+---*/
+
+//CHECK#1
+if (typeof new Number() !== "object") {
+ $ERROR("#1: typeof new Number() === 'object'");
+}
+
+//CHECK#2
+if (new Number() === undefined) {
+ $ERROR("#2: new Number() should not be undefined");
+}
+
+//CHECK#3
+var x3 = new Number();
+if (typeof x3 !== "object") {
+ $ERROR("#3: typeof new Number() === 'object'");
+}
+
+//CHECK#4
+var x4 = new Number();
+if (x4 === undefined) {
+ $ERROR("#4: new Number() should not be undefined");
+}
+
+//CHECK#5
+if (typeof new Number(10) !== "object") {
+ $ERROR("#5: typeof new Number(10) === 'object'");
+}
+
+//CHECK#6
+if (new Number(10) === undefined) {
+ $ERROR("#6: new Number(10) should not be undefined");
+}
+
+//CHECK#7
+var x7 = new Number(10);
+if (typeof x7 !== "object") {
+ $ERROR("#7: typeof new Number(10) === 'object'");
+}
+
+//CHECK#8
+var x8 = new Number(10);
+if (x8 === undefined) {
+ $ERROR("#8: new Number(10) should not be undefined");
+}
+
+reportCompare(0, 0);