Changeset 142214 in webkit


Ignore:
Timestamp:
Feb 7, 2013 5:28:52 PM (11 years ago)
Author:
tkent@chromium.org
Message:

[Chromium-Android] Disable input[type=datetime]
https://bugs.webkit.org/show_bug.cgi?id=107614

Reviewed by Kentaro Hara.

Source/WebKit/chromium:

Reason:
http://lists.webkit.org/pipermail/webkit-dev/2013-January/023404.html

  • features.gypi:

Disable ENABLE_INPUT_TYPE_DATETIME because of a wrong UI.
We enable it for non-Android ports but the runtime flag for it is
disabled by default. The runtime flag is enabled only in DumpRenderTree.

LayoutTests:

  • platform/chromium/TestExpectations:

Tetsts in fast/forms/datetime/ fail.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r142211 r142214  
     12013-02-07  Kent Tamura  <tkent@chromium.org>
     2
     3        [Chromium-Android] Disable input[type=datetime]
     4        https://bugs.webkit.org/show_bug.cgi?id=107614
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * platform/chromium/TestExpectations:
     9        Tetsts in fast/forms/datetime/ fail.
     10
    1112013-02-07  Jeffrey Pfau  <jpfau@apple.com>
    212
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r142198 r142214  
    18421842webkit.org/b/98782 [ Android ] fast/css/getComputedStyle/computed-style-select-overflow.html [ Failure ]
    18431843
     1844# [Chromium-Android] Disable <input type=datetime> implementation.
     1845crbug.com/164561 [ Android ] fast/forms/datetime/ [ Failure Pass ]
    18441846# [Chromium-Android] No <input type=week> implementation.
    18451847crbug.com/135938 [ Android ] fast/forms/week/ [ Failure Pass ]
  • trunk/Source/WebKit/chromium/ChangeLog

    r142197 r142214  
     12013-02-07  Kent Tamura  <tkent@chromium.org>
     2
     3        [Chromium-Android] Disable input[type=datetime]
     4        https://bugs.webkit.org/show_bug.cgi?id=107614
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Reason:
     9        http://lists.webkit.org/pipermail/webkit-dev/2013-January/023404.html
     10
     11        * features.gypi:
     12        Disable ENABLE_INPUT_TYPE_DATETIME because of a wrong UI.
     13        We enable it for non-Android ports but the runtime flag for it is
     14        disabled by default. The runtime flag is enabled only in DumpRenderTree.
     15
    1162013-02-07  Terry Anderson  <tdanderson@chromium.org>
    217
  • trunk/Source/WebKit/chromium/features.gypi

    r141985 r142214  
    7676      'ENABLE_INDEXED_DATABASE=1',
    7777      'ENABLE_INPUT_TYPE_DATE=1',
    78       'ENABLE_INPUT_TYPE_DATETIME=1',
    7978      'ENABLE_INPUT_TYPE_DATETIMELOCAL=1',
    8079      'ENABLE_INPUT_TYPE_MONTH=1',
     
    170169          'ENABLE_INPUT_SPEECH=0',
    171170          'ENABLE_INPUT_TYPE_COLOR=0',
     171          'ENABLE_INPUT_TYPE_DATETIME=0',
    172172          'ENABLE_INPUT_TYPE_WEEK=0',
    173173          'ENABLE_LEGACY_NOTIFICATIONS=0',
     
    191191          'ENABLE_INPUT_SPEECH=1',
    192192          'ENABLE_INPUT_TYPE_COLOR=1',
     193          'ENABLE_INPUT_TYPE_DATETIME=1',
    193194          'ENABLE_INPUT_TYPE_WEEK=1',
    194195          'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1',
Note: See TracChangeset for help on using the changeset viewer.