summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/JSON/stringify/space-wrong-type.js
blob: fe4c1ff8278b4ed6bb146059a7377c8c4262fbb3 (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
// Copyright (C) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-json.stringify
description: >
  Space parameter of wrong type is silently ignored.
info: |
  JSON.stringify ( value [ , replacer [ , space ] ] )

  [...]
  8. Else,
    a. Let gap be the empty String.
features: [Symbol]
---*/

var obj = {
  a1: {
    b1: [1, 2, 3, 4],
    b2: {
      c1: 1,
      c2: 2,
    },
  },
  a2: 'a2',
};

assert.sameValue(JSON.stringify(obj), JSON.stringify(obj, null, null));
assert.sameValue(JSON.stringify(obj), JSON.stringify(obj, null, true));
assert.sameValue(JSON.stringify(obj), JSON.stringify(obj, null, new Boolean(false)));
assert.sameValue(JSON.stringify(obj), JSON.stringify(obj, null, Symbol()));
assert.sameValue(JSON.stringify(obj), JSON.stringify(obj, null, {}));

reportCompare(0, 0);