summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
blob: 57d3077101bc12b9629558778741acf7b3468f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-date.prototype.toisostring
description: >
    Date.prototype.toISOString - when this is a String object that
    value format is 'YYYY-MM-DDTHH:mm:ss.sssZ'
    Date.prototype.toISOString throw the TypeError
---*/

var date = new String("1970-01-00000:00:00.000Z");
assert.throws(TypeError, function() {
  Date.prototype.toISOString.call(date);
});

reportCompare(0, 0);