mirror of
https://github.com/tc39/test262.git
synced 2025-07-06 13:44:40 +02:00
which have resulted in it being able to run negative test cases which corrupt the global JavaScript environment. This lets us enable fifty plus more Sputnik test cases. Another positive result from this test harness refactoring is that Opera no longer hangs when running the tests.
21 lines
593 B
JavaScript
21 lines
593 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
var HoursPerDay = 24;
|
|
var MinutesPerHour = 60;
|
|
var SecondsPerMinute = 60;
|
|
|
|
var msPerDay = 86400000;
|
|
var msPerSecond = 1000;
|
|
var msPerMinute = 60000;
|
|
var msPerHour = 3600000;
|
|
|
|
var date_1899_end = -2208988800001;
|
|
var date_1900_start = -2208988800000;
|
|
var date_1969_end = -1;
|
|
var date_1970_start = 0;
|
|
var date_1999_end = 946684799999;
|
|
var date_2000_start = 946684800000;
|
|
var date_2099_end = 4102444799999;
|
|
var date_2100_start = 4102444800000;
|