Changeset 142290 in webkit


Ignore:
Timestamp:
Feb 8, 2013 9:12:32 AM (11 years ago)
Author:
tkent@chromium.org
Message:

[Chromium] Disable ENABLE_INPUT_TYPE_DATETIME
https://bugs.webkit.org/show_bug.cgi?id=109272

Reviewed by Kentaro Hara.

Source/WebKit/chromium:

We enabled this flag for desktop Chromium, but disabled the feature by a
runtime flag. We disables the compile flag too because we have no plan
to ship it in near future.

  • features.gypi: Remove ENABLE_INPUT_TYPE_DATETIME.

LayoutTests:

  • platform/chromium/TestExpectations:

Skip fast/forms/datetime and datetime-multiple-fields

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r142286 r142290  
     12013-02-08  Kent Tamura  <tkent@chromium.org>
     2
     3        [Chromium] Disable ENABLE_INPUT_TYPE_DATETIME
     4        https://bugs.webkit.org/show_bug.cgi?id=109272
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * platform/chromium/TestExpectations:
     9        Skip fast/forms/datetime and datetime-multiple-fields
     10
    1112013-02-08  Stephen Chenney  <schenney@chromium.org>
    212
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r142286 r142290  
    938938# Chromium disabled web intents
    939939crbug.com/173194 webintents [ Skip ]
     940
     941# We disabled INPUT_TYPE_DATETIME.
     942webkit.org/b/109272 fast/forms/datetime [ Skip ]
     943webkit.org/b/109272 fast/forms/datetime-multiple-fields [ Skip ]
     944webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-appearance-rtl.html [ Skip ]
     945webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-step-attribute.html [ Skip ]
     946webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-reset-value-after-reload.html [ Skip ]
     947webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-appearance-locale-hebrew.html [ Skip ]
     948webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-key-operations.html [ Skip ]
     949webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-appearance-with-scroll-bar.html [ Skip ]
     950webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-min-max-attribute.html [ Skip ]
     951webkit.org/b/109272 platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime-with-step.html [ Skip ]
     952webkit.org/b/109272 platform/chromium/fast/forms/calendar-picker/calendar-picker-datetime.html [ Skip ]
     953webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-appearance.html [ Skip ]
     954webkit.org/b/109272 platform/chromium/fast/forms/suggestion-picker/datetime-suggestion-picker-mouse-operations.html [ Skip ]
    940955
    941956# Skipping rules for ANDROID are in platform/chromium-android/TestExpectations.
  • trunk/Source/WebCore/html/InputType.h

    r141887 r142290  
    327327
    328328} // namespace WebCore
    329 
    330 #endif
     329#endif
  • trunk/Source/WebKit/chromium/ChangeLog

    r142257 r142290  
     12013-02-08  Kent Tamura  <tkent@chromium.org>
     2
     3        [Chromium] Disable ENABLE_INPUT_TYPE_DATETIME
     4        https://bugs.webkit.org/show_bug.cgi?id=109272
     5
     6        Reviewed by Kentaro Hara.
     7
     8        We enabled this flag for desktop Chromium, but disabled the feature by a
     9        runtime flag. We disables the compile flag too because we have no plan
     10        to ship it in near future.
     11
     12        * features.gypi: Remove ENABLE_INPUT_TYPE_DATETIME.
     13
    1142013-02-08  Stephen Chenney  <schenney@chromium.org>
    215
  • trunk/Source/WebKit/chromium/features.gypi

    r142214 r142290  
    169169          'ENABLE_INPUT_SPEECH=0',
    170170          'ENABLE_INPUT_TYPE_COLOR=0',
    171           'ENABLE_INPUT_TYPE_DATETIME=0',
    172171          'ENABLE_INPUT_TYPE_WEEK=0',
    173172          'ENABLE_LEGACY_NOTIFICATIONS=0',
     
    191190          'ENABLE_INPUT_SPEECH=1',
    192191          'ENABLE_INPUT_TYPE_COLOR=1',
    193           'ENABLE_INPUT_TYPE_DATETIME=1',
    194192          'ENABLE_INPUT_TYPE_WEEK=1',
    195193          'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1',
Note: See TracChangeset for help on using the changeset viewer.