Merge pull request #534 from mythrialle/master

Removes special handling for UTC timezone in toISOString/15.9.5.43-0-1…
This commit is contained in:
Gorkem Yakin 2016-04-25 10:02:19 -07:00
commit a432cde542
1 changed files with 4 additions and 12 deletions

View File

@ -5,19 +5,11 @@
es5id: 15.9.5.43-0-13
description: >
Date.prototype.toISOString - RangeError is thrown when value of
date is Date(1970, 0, 100000001, 0, 0, 0, 1), the time zone is
UTC(0)
date is outside the valid range of time.
---*/
var timeZoneMinutes = new Date().getTimezoneOffset() * (-1);
var date, dateStr;
// As specified in ES5 15.9.1.14, time > 8.64e15 is not in the valid range.
var date = new Date(8.64e15 + 1);
assert.throws(RangeError, function() {
if (timeZoneMinutes > 0) {
date = new Date(1970, 0, 100000001, 0, 0 + timeZoneMinutes + 60, 0, 1);
dateStr = date.toISOString();
} else {
date = new Date(1970, 0, 100000001, 0, 0, 0, 1);
dateStr = date.toISOString();
}
date.toISOString();
});