summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
blob: d3be4f9fb4086391a9621446131b8e54496130c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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
es5id: 15.9.5.43-0-16
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);
});