unknown property access on objects doesn't throw exceptions

This commit is contained in:
vladimir%pobox.com 2005-05-23 21:18:37 +00:00
parent d4e623044f
commit bd47e9b557

View File

@ -188,9 +188,10 @@ function guessSystemTimezone()
dump("Guessing system timezone:\n");
dump("offset : " + offset + "\ntimezone: " + timezone + "\n");
try {
return tzTable[offset + " " + timezone];
} catch(ex) {
var tzindex = offset + " " + timezone;
if (tzindex in tzTable) {
return tzTable[tzindex];
} else {
// XXX we don't really have a better option here
return "floating";
}