You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
831 B
16 lines
831 B
({ |
|
name: "date.timezone.Pacific-Kiritimati", |
|
runTest: function(t){ |
|
var tz = "Pacific/Kiritimati"; |
|
doh.checkDate({tzOffset: 640, tzAbbr: "LINT"}, -2147483648000, tz, 1); |
|
doh.checkDate({tzOffset: 640, tzAbbr: "LINT"}, -2147397248000, tz, 1); |
|
doh.checkDate({tzOffset: 640, tzAbbr: "LINT"}, 307622399000, tz, 1); |
|
doh.checkDate({tzOffset: 600, tzAbbr: "LINT"}, 307622400000, tz, 1); |
|
doh.checkDate({tzOffset: 600, tzAbbr: "LINT"}, 788954399000, tz, 1); |
|
doh.checkDate({tzOffset: -840, tzAbbr: "LINT"}, 788954400000, tz, 1); |
|
doh.checkDate({tzOffset: -840, tzAbbr: "LINT"}, 2147397247000, tz, 1); |
|
doh.checkDate({tzOffset: -840, tzAbbr: "LINT"}, 2147483647000, tz, 1); |
|
doh.checkDate({tzOffset: -840, tzAbbr: "LINT"}, 1231151400000, tz, 0); |
|
doh.checkDate({tzOffset: -840, tzAbbr: "LINT"}, 1246789800000, tz, 0); |
|
} |
|
})
|
|
|