[Webkit-unassigned] [Bug 59752] Allow Localized Date Strings for Date Input Fields

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 29 16:33:49 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=59752





--- Comment #14 from Joseph Pecoraro <joepeck at webkit.org>  2011-04-29 16:33:49 PST ---
Hmm, this:

    bool MonthInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
    {
        ASSERT(date);
        return date->setMonthsSinceEpoch(value);
    }

Should probably be using:

        return date->setMillisecondsSinceEpochForMonth(value)

If that is the case I'll file a separate bug, fix that first, and come back to this
with the direct serialize approach.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list