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.
18 lines
972 B
18 lines
972 B
({ |
|
name: "date.timezone.Asia-Jayapura", |
|
runTest: function(t){ |
|
var tz = "Asia/Jayapura"; |
|
doh.checkDate({tzOffset: -562.8, tzAbbr: "LMT"}, -2147483648000, tz, 1); |
|
doh.checkDate({tzOffset: -562.8, tzAbbr: "LMT"}, -2147397248000, tz, 1); |
|
doh.checkDate({tzOffset: -562.8, tzAbbr: "LMT"}, -1172913769000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, -1172913768000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, -799491601000, tz, 1); |
|
doh.checkDate({tzOffset: -570, tzAbbr: "CST"}, -799491600000, tz, 1); |
|
doh.checkDate({tzOffset: -570, tzAbbr: "CST"}, -189423001000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, -189423000000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, 2147397247000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, 2147483647000, tz, 1); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, 1231151400000, tz, 0); |
|
doh.checkDate({tzOffset: -540, tzAbbr: "EIT"}, 1246789800000, tz, 0); |
|
} |
|
})
|
|
|