Title: [125868] trunk/Source/WebCore
- Revision
- 125868
- Author
- yo...@chromium.org
- Date
- 2012-08-17 01:35:14 -0700 (Fri, 17 Aug 2012)
Log Message
[Forms] Enable multiple fields time input UI for Chromium except Android
https://bugs.webkit.org/show_bug.cgi?id=94195
Reviewed by Kent Tamura.
This patch enables multiple fields time input UI for Chromium except
for Android.
No new tests. Existing tests in fast/forms/time-multiple-fields/
covers appearance and functionality of multiple fields time UI.
A manual checking for browser displays multiple fields time input UI
is needed.
* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore): Changed RuntimeEnabledFeatures::isInputTypeTimeEnabled to true
if ENABLE_INPUT_TYPE_TIME is enabled.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (125867 => 125868)
--- trunk/Source/WebCore/ChangeLog 2012-08-17 08:13:03 UTC (rev 125867)
+++ trunk/Source/WebCore/ChangeLog 2012-08-17 08:35:14 UTC (rev 125868)
@@ -1,5 +1,25 @@
2012-08-17 Yoshifumi Inoue <yo...@chromium.org>
+ [Forms] Enable multiple fields time input UI for Chromium except Android
+ https://bugs.webkit.org/show_bug.cgi?id=94195
+
+ Reviewed by Kent Tamura.
+
+ This patch enables multiple fields time input UI for Chromium except
+ for Android.
+
+ No new tests. Existing tests in fast/forms/time-multiple-fields/
+ covers appearance and functionality of multiple fields time UI.
+
+ A manual checking for browser displays multiple fields time input UI
+ is needed.
+
+ * bindings/generic/RuntimeEnabledFeatures.cpp:
+ (WebCore): Changed RuntimeEnabledFeatures::isInputTypeTimeEnabled to true
+ if ENABLE_INPUT_TYPE_TIME is enabled.
+
+2012-08-17 Yoshifumi Inoue <yo...@chromium.org>
+
[Forms] Introduce SpinButtonElement.{cpp,h} into build
https://bugs.webkit.org/show_bug.cgi?id=94289
Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (125867 => 125868)
--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp 2012-08-17 08:13:03 UTC (rev 125867)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp 2012-08-17 08:35:14 UTC (rev 125868)
@@ -225,12 +225,8 @@
#endif
#if ENABLE(INPUT_TYPE_TIME)
-#if PLATFORM(CHROMIUM) && !OS(ANDROID)
-bool RuntimeEnabledFeatures::isInputTypeTimeEnabled = false;
-#else
bool RuntimeEnabledFeatures::isInputTypeTimeEnabled = true;
#endif
-#endif
#if ENABLE(INPUT_TYPE_WEEK)
#if PLATFORM(CHROMIUM) && !OS(ANDROID)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes