Changeset 129095 in webkit


Ignore:
Timestamp:
Sep 19, 2012 11:13:37 PM (12 years ago)
Author:
yosin@chromium.org
Message:

[Forms] multiple fields time input UI should call notifyFormStateChanged() when value of field is changed
https://bugs.webkit.org/show_bug.cgi?id=97169

Reviewed by Kent Tamura.

This patch makes multiple fields time input UI calls notifyFormStateChanged()
when field value is changed as other input types do.

This patch affects ports which enable both ENABLE_INPUT_TYPE_TIME and
ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS.

No new tests. We can't test this change in WebKit test tools. Test script
will be implemented in Chromium side.

  • html/TimeInputType.cpp:

(WebCore::TimeInputType::DateTimeEditControlOwnerImpl::editControlValueChanged):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r129094 r129095  
     12012-09-19  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Forms] multiple fields time input UI should call notifyFormStateChanged() when value of field is changed
     4        https://bugs.webkit.org/show_bug.cgi?id=97169
     5
     6        Reviewed by Kent Tamura.
     7
     8        This patch makes multiple fields time input UI calls notifyFormStateChanged()
     9        when field value is changed as other input types do.
     10
     11        This patch affects ports which enable both ENABLE_INPUT_TYPE_TIME and
     12        ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS.
     13
     14        No new tests. We can't test this change in WebKit test tools. Test script
     15        will be implemented in Chromium side.
     16
     17        * html/TimeInputType.cpp:
     18        (WebCore::TimeInputType::DateTimeEditControlOwnerImpl::editControlValueChanged):
     19
    1202012-09-19  Keishi Hattori  <keishi@webkit.org>
    221
  • trunk/Source/WebCore/html/TimeInputType.cpp

    r128594 r129095  
    153153    input->dispatchFormControlInputEvent();
    154154    input->dispatchFormControlChangeEvent();
     155    input->notifyFormStateChanged();
    155156}
    156157
Note: See TracChangeset for help on using the changeset viewer.