summaryrefslogtreecommitdiffstats
path: root/content/renderer/renderer_date_time_picker.cc
Commit message (Collapse)AuthorAgeFilesLines
* Support for seconds and milliseconds in the time input dialog. anton@chromium.org2013-08-161-4/+12
| | | | | | | | | | | | | | C++ reformatting by "git cl format". Previously LGTM in https://codereview.chromium.org/21907003/ TBR=jochen,bulach,palmer BUG=164563 TEST=RendererDateTimePickerTest.* Review URL: https://chromiumcodereview.appspot.com/22921005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218020 0039d316-1c4b-4281-b951-d872f2087c98
* Week picker for androidkeishi@chromium.org2013-06-201-7/+12
| | | | | | | | | | | | | This adds support for <input type=week> on Android. ViewHostMsg_DateTimeDialogValue_Params: Adding members for week_year and week. Adding week_year separately from year to avoid confusion. WeekPicker.getWeekYearForDate(): Calendar.get(Calendar.YEAR) returns the year for the day and not the ISO week year. This returns the ISO week year. BUG=135938 Review URL: https://chromiumcodereview.appspot.com/15057004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207444 0039d316-1c4b-4281-b951-d872f2087c98
* Update Blink include pathsabarth@chromium.org2013-06-171-3/+3
| | | | | | | | | | | | | This CL changes the majority of include paths from the old Source/WebKit/chromium/public to the new public/web directory. TBR=darin BUG=239545 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/17148003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206664 0039d316-1c4b-4281-b951-d872f2087c98
* Use a direct include of strings headers in content/renderer and content/shell.avi@chromium.org2013-06-111-1/+1
| | | | | | | | | | BUG=247723 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/16756003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205451 0039d316-1c4b-4281-b951-d872f2087c98
* - pass the min/max attribute from Blink into the browsermiguelg@chromium.org2013-06-041-3/+2
| | | | | | | | | | | - use them in the different components - minor cleanup of some of the elements while at it BUG=135948 Review URL: https://chromiumcodereview.appspot.com/15533003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203975 0039d316-1c4b-4281-b951-d872f2087c98
* Move Android Date/Time parsing to the renderer (C++ and ICU) instead of the ↵miguelg@chromium.org2013-02-071-26/+27
| | | | | | | | | | current parsing that happens in the browser (on java using java libraries) BUG=143540 Review URL: https://chromiumcodereview.appspot.com/12191005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181364 0039d316-1c4b-4281-b951-d872f2087c98
* Split Date/Time picker values from IME processing since date/time related ↵miguelg@chromium.org2013-01-171-5/+4
| | | | | | | | | | | form values have been completly split from text related fields in WebKit and keyboard interaction is no longer needed for those elements. BUG=143540 Review URL: https://chromiumcodereview.appspot.com/11783088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177405 0039d316-1c4b-4281-b951-d872f2087c98
* Use WebCore:DateTimeChooser for date/time form types instead of considering ↵miguelg@chromium.org2012-12-181-0/+78
them text fields. BUG=159381 Review URL: https://chromiumcodereview.appspot.com/11418295 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173655 0039d316-1c4b-4281-b951-d872f2087c98