summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-str.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-str.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-str.js b/js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-str.js
new file mode 100644
index 0000000000..b3497808ed
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-str.js
@@ -0,0 +1,22 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+description: >
+ String values of `Symbol.toStringTag` property are honored
+es6id: 19.1.3.6
+info: |
+ 16. Let tag be Get (O, @@toStringTag).
+ 17. ReturnIfAbrupt(tag).
+ 18. If Type(tag) is not String, let tag be builtinTag.
+ 19. Return the String that is the result of concatenating "[object ", tag,
+ and "]".
+features: [Symbol.toStringTag]
+---*/
+
+var custom = {};
+custom[Symbol.toStringTag] = 'test262';
+
+assert.sameValue(Object.prototype.toString.call(custom), '[object test262]');
+
+reportCompare(0, 0);