summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/toJSON/non-finite.js
blob: f3f6753a04eba059e6cd97fc9174b41859e70596 (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
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.prototype.tojson
description: >
  If this value coerces to non-finite number, null is returned.
info: |
  Date.prototype.toJSON ( key )

  [...]
  2. Let tv be ? ToPrimitive(O, hint Number).
  3. If Type(tv) is Number and tv is not finite, return null.
---*/

var toJSON = Date.prototype.toJSON;

assert.sameValue(
  toJSON.call({
    get toISOString() { throw new Test262Error();  },
    valueOf: function() { return NaN; },
  }),
  null
);

var num = new Number(-Infinity);
num.toISOString = function() { throw new Test262Error(); };
assert.sameValue(toJSON.call(num), null);

reportCompare(0, 0);