summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/is/symbol-object-is-same-value.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/is/symbol-object-is-same-value.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/is/symbol-object-is-same-value.js b/js/src/tests/test262/built-ins/Object/is/symbol-object-is-same-value.js
new file mode 100644
index 0000000000..a6c0ad77ce
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/is/symbol-object-is-same-value.js
@@ -0,0 +1,17 @@
+// Copyright (C) 2013 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-object.is
+description: >
+ Object.is/SameValue: Symbol
+features: [Object.is, Symbol]
+---*/
+var symA = Symbol('66');
+var symB = Symbol('66');
+
+
+assert.sameValue(Object.is(symA, symA), true, "`Object.is(symA, symA)` returns `true`");
+assert.sameValue(Object.is(symB, symB), true, "`Object.is(symB, symB)` returns `true`");
+assert.sameValue(Object.is(symA, symB), false, "`Object.is(symA, symB)` returns `false`");
+
+reportCompare(0, 0);