Title: [121135] trunk/Tools
Revision
121135
Author
[email protected]
Date
2012-06-24 20:32:21 -0700 (Sun, 24 Jun 2012)

Log Message

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

Patch by Thiago Marcos P. Santos <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (121134 => 121135)


--- trunk/Tools/ChangeLog	2012-06-25 03:28:27 UTC (rev 121134)
+++ trunk/Tools/ChangeLog	2012-06-25 03:32:21 UTC (rev 121135)
@@ -1,3 +1,16 @@
+2012-06-24  Thiago Marcos P. Santos  <[email protected]>
+
+        [Qt] Enable <input type="color"> support by default
+        https://bugs.webkit.org/show_bug.cgi?id=89653
+
+        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:
+
 2012-06-24  Dan Bernstein  <[email protected]>
 
         Made debug-{minibrowser,safari,test-runner} work with LLDB.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (121134 => 121135)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-06-25 03:28:27 UTC (rev 121134)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-06-25 03:32:21 UTC (rev 121135)
@@ -235,7 +235,7 @@
       define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSupport },
 
     { option => "input-type-color", desc => "Toggle Input Type Color support",
-      define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl()), value => \$inputTypeColorSupport },
+      define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl() || isQt()), value => \$inputTypeColorSupport },
 
     { option => "input-type-date", desc => "Toggle Input Type Date support",
       define => "ENABLE_INPUT_TYPE_DATE", default => 0, value => \$inputTypeDateSupport },

Modified: trunk/Tools/qmake/mkspecs/features/features.pri (121134 => 121135)


--- trunk/Tools/qmake/mkspecs/features/features.pri	2012-06-25 03:28:27 UTC (rev 121134)
+++ trunk/Tools/qmake/mkspecs/features/features.pri	2012-06-25 03:32:21 UTC (rev 121135)
@@ -51,7 +51,7 @@
     ENABLE_IFRAME_SEAMLESS=1 \
     ENABLE_INDEXED_DATABASE=0 \
     ENABLE_INPUT_SPEECH=0 \
-    ENABLE_INPUT_TYPE_COLOR=0 \
+    ENABLE_INPUT_TYPE_COLOR=1 \
     ENABLE_INPUT_TYPE_DATE=0 \
     ENABLE_INPUT_TYPE_DATETIME=0 \
     ENABLE_INPUT_TYPE_DATETIMELOCAL=0 \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to