Status: Accepted
Owner: [email protected]
Labels: Type-Bug Priority-Medium

New issue 3746 by [email protected]: Date constructor should choose later UTC time for ambigious local time.
https://code.google.com/p/v8/issues/detail?id=3746

Transition from DST makes mapping from local time to UTC ambiguous.
For example:

var t1 = new Date(2014,10,2,1,0);
Sun Nov 02 2014 01:00:00 GMT-0700 (PDT)
var t2 = new Date(t1.valueOf() + 3600000)
Sun Nov 02 2014 01:00:00 GMT-0800 (PST)

Both t1 and t2 map to the same local time.

Although both t1 and t2 are correct according to the spec, Chrome should choose t2 to match other browsers and user expectations.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to