Title: [134421] trunk/Source/WebCore
Revision
134421
Author
[email protected]
Date
2012-11-13 08:06:41 -0800 (Tue, 13 Nov 2012)

Log Message

[Chromium] Enable input type month/week
https://bugs.webkit.org/show_bug.cgi?id=102042

Reviewed by Kent Tamura.

Enable input type month/week for Chromium.

No new tests. Tests will be added later in Bug 102045 and Bug 102046.

* bindings/generic/RuntimeEnabledFeatures.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134420 => 134421)


--- trunk/Source/WebCore/ChangeLog	2012-11-13 15:59:02 UTC (rev 134420)
+++ trunk/Source/WebCore/ChangeLog	2012-11-13 16:06:41 UTC (rev 134421)
@@ -1,3 +1,17 @@
+2012-11-13  Keishi Hattori  <[email protected]>
+
+        [Chromium] Enable input type month/week
+        https://bugs.webkit.org/show_bug.cgi?id=102042
+
+        Reviewed by Kent Tamura.
+
+        Enable input type month/week for Chromium.
+
+        No new tests. Tests will be added later in Bug 102045 and Bug 102046.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp:
+        (WebCore):
+
 2012-11-13  Shinya Kawanaka  <[email protected]>
 
         [Refactoring] Remove shadowPseudoId() and use setPseudo() in <meter> ElementShadow.

Modified: trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp (134420 => 134421)


--- trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-11-13 15:59:02 UTC (rev 134420)
+++ trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp	2012-11-13 16:06:41 UTC (rev 134421)
@@ -217,24 +217,16 @@
 #endif
 
 #if ENABLE(INPUT_TYPE_MONTH)
-#if PLATFORM(CHROMIUM) && !OS(ANDROID)
-bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = false;
-#else
 bool RuntimeEnabledFeatures::isInputTypeMonthEnabled = true;
 #endif
-#endif
 
 #if ENABLE(INPUT_TYPE_TIME)
 bool RuntimeEnabledFeatures::isInputTypeTimeEnabled = true;
 #endif
 
 #if ENABLE(INPUT_TYPE_WEEK)
-#if PLATFORM(CHROMIUM) && !OS(ANDROID)
-bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = false;
-#else
 bool RuntimeEnabledFeatures::isInputTypeWeekEnabled = true;
 #endif
-#endif
 
 #if ENABLE(DIALOG_ELEMENT)
 bool RuntimeEnabledFeatures::isDialogElementEnabled = false;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to