summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/toString/symbol-tag-non-str.js
blob: 1269aba399fcf4dc95fdb6590f305d801229b828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Non-string values of `Symbol.toStringTag` property are ignored
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] = undefined;
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = null;
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = Symbol.toStringTag;
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = 86;
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = new String('test262');
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = {};
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

custom[Symbol.toStringTag] = {
  toString: function() {
    return 'str';
  }
};
assert.sameValue(Object.prototype.toString.call(custom), '[object Object]');

reportCompare(0, 0);