Changeset 113298 in webkit


Ignore:
Timestamp:
Apr 5, 2012 12:30:51 AM (12 years ago)
Author:
tkent@chromium.org
Message:

Add JavaScript and CSS code for the calendar picker implementation
https://bugs.webkit.org/show_bug.cgi?id=83011

Reviewed by Hajime Morita.

.:

  • ManualTests/forms/calendar-picker.html: Added.

Source/WebCore:

Add calendarPicker.js and calendarPicker.css, and add a build rule to
generate a C++ file. This change doesn't make any behavior change
because the code is wrapped by ENABLE(CALENDAR_PICKER).

Tests: ManualTests/forms/calendar-picker.html

  • Resources/calendarPicker.css: Added.
  • Resources/calendarPicker.js: Added.
  • WebCore.gyp/WebCore.gyp: Generate CalendarPicker.{cpp,h} from calendarPicker.{css,js}.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r113294 r113298  
     12012-04-04  Kent Tamura  <tkent@chromium.org>
     2
     3        Add JavaScript and CSS code for the calendar picker implementation
     4        https://bugs.webkit.org/show_bug.cgi?id=83011
     5
     6        Reviewed by Hajime Morita.
     7
     8        * ManualTests/forms/calendar-picker.html: Added.
     9
    1102012-04-04  Hayato Ito  <hayato@chromium.org>
    211
  • trunk/Source/WebCore/ChangeLog

    r113297 r113298  
     12012-04-04  Kent Tamura  <tkent@chromium.org>
     2
     3        Add JavaScript and CSS code for the calendar picker implementation
     4        https://bugs.webkit.org/show_bug.cgi?id=83011
     5
     6        Reviewed by Hajime Morita.
     7
     8        Add calendarPicker.js and calendarPicker.css, and add a build rule to
     9        generate a C++ file. This change doesn't make any behavior change
     10        because the code is wrapped by ENABLE(CALENDAR_PICKER).
     11
     12        Tests: ManualTests/forms/calendar-picker.html
     13
     14        * Resources/calendarPicker.css: Added.
     15        * Resources/calendarPicker.js: Added.
     16        * WebCore.gyp/WebCore.gyp: Generate CalendarPicker.{cpp,h} from calendarPicker.{css,js}.
     17
    1182012-04-05  Kinuko Yasuda  <kinuko@chromium.org>
    219
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r113297 r113298  
    843843        },
    844844        {
     845          'action_name': 'CalendarPicker',
     846          'inputs': [
     847            '../Resources/calendarPicker.css',
     848            '../Resources/calendarPicker.js',
     849          ],
     850          'outputs': [
     851            '<(SHARED_INTERMEDIATE_DIR)/webkit/CalendarPicker.h',
     852            '<(SHARED_INTERMEDIATE_DIR)/webkit/CalendarPicker.cpp',
     853          ],
     854          'action': [
     855            'python',
     856            '../make-file-arrays.py',
     857            '--condition=ENABLE(CALENDAR_PICKER)',
     858            '--out-h=<(SHARED_INTERMEDIATE_DIR)/webkit/CalendarPicker.h',
     859            '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/webkit/CalendarPicker.cpp',
     860            '<@(_inputs)',
     861          ],
     862        },
     863        {
    845864          'action_name': 'XLinkNames',
    846865          'inputs': [
     
    10791098        '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLElementFactory.cpp',
    10801099        '<(SHARED_INTERMEDIATE_DIR)/webkit/HTMLNames.cpp',
     1100        '<(SHARED_INTERMEDIATE_DIR)/webkit/CalendarPicker.cpp',
    10811101        '<(SHARED_INTERMEDIATE_DIR)/webkit/EventFactory.cpp',
    10821102        '<(SHARED_INTERMEDIATE_DIR)/webkit/EventHeaders.h',
Note: See TracChangeset for help on using the changeset viewer.