summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/Object
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/annexB/built-ins/Object
parentInitial commit. (diff)
downloadfirefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz
firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.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/annexB/built-ins/Object')
-rw-r--r--js/src/tests/test262/annexB/built-ins/Object/browser.js0
-rw-r--r--js/src/tests/test262/annexB/built-ins/Object/is/browser.js0
-rw-r--r--js/src/tests/test262/annexB/built-ins/Object/is/emulates-undefined.js28
-rw-r--r--js/src/tests/test262/annexB/built-ins/Object/is/shell.js0
-rw-r--r--js/src/tests/test262/annexB/built-ins/Object/shell.js0
5 files changed, 28 insertions, 0 deletions
diff --git a/js/src/tests/test262/annexB/built-ins/Object/browser.js b/js/src/tests/test262/annexB/built-ins/Object/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Object/browser.js
diff --git a/js/src/tests/test262/annexB/built-ins/Object/is/browser.js b/js/src/tests/test262/annexB/built-ins/Object/is/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Object/is/browser.js
diff --git a/js/src/tests/test262/annexB/built-ins/Object/is/emulates-undefined.js b/js/src/tests/test262/annexB/built-ins/Object/is/emulates-undefined.js
new file mode 100644
index 0000000000..c6b4bb8417
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Object/is/emulates-undefined.js
@@ -0,0 +1,28 @@
+// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-object.is
+description: >
+ SameValue abstract op doesn't special-case [[IsHTMLDDA]] objects.
+info: |
+ Object.is ( value1, value2 )
+
+ 1. Return SameValue(value1, value2).
+
+ SameValue ( x, y )
+
+ 1. If Type(x) is different from Type(y), return false.
+features: [IsHTMLDDA]
+---*/
+
+var IsHTMLDDA = $262.IsHTMLDDA;
+
+assert.sameValue(Object.is(IsHTMLDDA, undefined), false, "SameValue with `undefined`");
+assert.sameValue(Object.is(undefined, IsHTMLDDA), false, "SameValue with `undefined`");
+
+assert.sameValue(Object.is(IsHTMLDDA, null), false, "SameValue with `null`");
+assert.sameValue(Object.is(null, IsHTMLDDA), false, "SameValue with `null`");
+
+assert(Object.is(IsHTMLDDA, IsHTMLDDA));
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/annexB/built-ins/Object/is/shell.js b/js/src/tests/test262/annexB/built-ins/Object/is/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Object/is/shell.js
diff --git a/js/src/tests/test262/annexB/built-ins/Object/shell.js b/js/src/tests/test262/annexB/built-ins/Object/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/annexB/built-ins/Object/shell.js