v8/test
lrn@chromium.org 7be18f702b make DateParser::TimeComposer handle 1-2 digits millisecond values
see http://code.google.com/p/v8/issues/detail?id=944
This patch makes DateParser::TimeComposer process times that have
millisecond values with only 1 or 2 digits.

Without this patch, Date.parse("2010-11-25T22:02:30.5") returns
1290690150005 and
Date.parse("2010-11-25T22:02:30.5") == Date.parse("2010-11-25T22:02:30.005")
evaluates to true.

With this patch, Date.parse("2010-11-25T22:02:30.5") returns
1290690150500 instead, and
Date.parse("2010-11-25T22:02:30.5") == Date.parse("2010-11-25T22:02:30.005")
evaluates to false.

Review URL: http://codereview.chromium.org/5336005

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5893 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2010-11-26 11:48:35 +00:00
..
cctest Simplify ProfLazyMode test on Linux. 2010-11-25 15:54:52 +00:00
es5conform Refactor the tools/test.py script and related testcfg.py files. 2010-08-24 13:34:59 +00:00
message Refactor the tools/test.py script and related testcfg.py files. 2010-08-24 13:34:59 +00:00
mjsunit make DateParser::TimeComposer handle 1-2 digits millisecond values 2010-11-26 11:48:35 +00:00
mozilla Fix mozilla and debug check failures. 2010-08-31 07:31:25 +00:00
sputnik Refactor the tools/test.py script and related testcfg.py files. 2010-08-24 13:34:59 +00:00