blob: 2e4f6b94213289f5b4bfc492fb7d1231b9c75b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
load(libdir + "immutable-prototype.js");
if (globalPrototypeChainIsMutable())
__proto__ = Function();
eval("\
var MS = 16;\
addNewTestCase(new Date(1899,11,31,16,0,0), \"new Date(1899,11,31,16,0,0)\", typeof UTC_DAY == 'undefined');\
function addNewTestCase( DateCase, DateString, ResultArray ) {\
ResultArray[MS];\
}\
");
|