⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 121135 in webkit


Ignore:
Timestamp:
Jun 24, 2012, 8:32:21 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] Enable <input type="color"> support by default
https://bugs.webkit.org/show_bug.cgi?id=89653

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-06-24
Reviewed by Kenneth Rohde Christiansen.

This feature is complete for Qt WebKit2. Enabling by default
will help to mature the implementation.

  • Scripts/webkitperl/FeatureList.pm:
  • qmake/mkspecs/features/features.pri:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r121122 r121135  
     12012-06-24  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [Qt] Enable <input type="color"> support by default
     4        https://bugs.webkit.org/show_bug.cgi?id=89653
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        This feature is complete for Qt WebKit2. Enabling by default
     9        will help to mature the implementation.
     10
     11        * Scripts/webkitperl/FeatureList.pm:
     12        * qmake/mkspecs/features/features.pri:
     13
    1142012-06-24  Dan Bernstein  <mitz@apple.com>
    215
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r121083 r121135  
    236236
    237237    { option => "input-type-color", desc => "Toggle Input Type Color support",
    238       define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl()), value => \$inputTypeColorSupport },
     238      define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl() || isQt()), value => \$inputTypeColorSupport },
    239239
    240240    { option => "input-type-date", desc => "Toggle Input Type Date support",
  • trunk/Tools/qmake/mkspecs/features/features.pri

    r120698 r121135  
    5252    ENABLE_INDEXED_DATABASE=0 \
    5353    ENABLE_INPUT_SPEECH=0 \
    54     ENABLE_INPUT_TYPE_COLOR=0 \
     54    ENABLE_INPUT_TYPE_COLOR=1 \
    5555    ENABLE_INPUT_TYPE_DATE=0 \
    5656    ENABLE_INPUT_TYPE_DATETIME=0 \
Note: See TracChangeset for help on using the changeset viewer.