Title: [160156] trunk
Revision
160156
Author
[email protected]
Date
2013-12-04 19:42:15 -0800 (Wed, 04 Dec 2013)

Log Message

Enable HTMLTemplateElement by default
https://bugs.webkit.org/show_bug.cgi?id=123851

Reviewed by Antti Koivisto.

.: 

* Source/autotools/SetupWebKitFeatures.m4:
* Source/cmake/WebKitFeatures.cmake:

Source/WTF: 

* wtf/FeatureDefines.h:

Tools: 

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/ChangeLog (160155 => 160156)


--- trunk/ChangeLog	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/ChangeLog	2013-12-05 03:42:15 UTC (rev 160156)
@@ -1,3 +1,13 @@
+2013-12-04  Ryosuke Niwa  <[email protected]>
+
+        Enable HTMLTemplateElement by default
+        https://bugs.webkit.org/show_bug.cgi?id=123851
+
+        Reviewed by Antti Koivisto.
+
+        * Source/autotools/SetupWebKitFeatures.m4:
+        * Source/cmake/WebKitFeatures.cmake:
+
 2013-12-04  László Langó  <[email protected]>
 
         Allow --cloop option to work correctly in case of EFL.

Modified: trunk/Source/WTF/ChangeLog (160155 => 160156)


--- trunk/Source/WTF/ChangeLog	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Source/WTF/ChangeLog	2013-12-05 03:42:15 UTC (rev 160156)
@@ -1,3 +1,12 @@
+2013-12-04  Ryosuke Niwa  <[email protected]>
+
+        Enable HTMLTemplateElement by default
+        https://bugs.webkit.org/show_bug.cgi?id=123851
+
+        Reviewed by Antti Koivisto.
+
+        * wtf/FeatureDefines.h:
+
 2013-12-04  Dan Bernstein  <[email protected]>
 
         Replace USE(SECURITY_FRAMEWORK) with finer-grained defines

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (160155 => 160156)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2013-12-05 03:42:15 UTC (rev 160156)
@@ -785,7 +785,7 @@
 #endif
 
 #if !defined(ENABLE_TEMPLATE_ELEMENT)
-#define ENABLE_TEMPLATE_ELEMENT 0
+#define ENABLE_TEMPLATE_ELEMENT 1
 #endif
 
 #if !defined(ENABLE_TEXT_AUTOSIZING)

Modified: trunk/Source/autotools/SetupWebKitFeatures.m4 (160155 => 160156)


--- trunk/Source/autotools/SetupWebKitFeatures.m4	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Source/autotools/SetupWebKitFeatures.m4	2013-12-05 03:42:15 UTC (rev 160156)
@@ -171,7 +171,7 @@
     ENABLE_SMOOTH_SCROLLING=1 \
     ENABLE_SQL_DATABASE=1 \
     ENABLE_SUBPIXEL_LAYOUT=1 \
-    ENABLE_TEMPLATE_ELEMENT=0 \
+    ENABLE_TEMPLATE_ELEMENT=1 \
     ENABLE_TEXT_AUTOSIZING=0 \
     ENABLE_THREADED_HTML_PARSER=0 \
     ENABLE_TOUCH_EVENTS=0 \

Modified: trunk/Source/cmake/WebKitFeatures.cmake (160155 => 160156)


--- trunk/Source/cmake/WebKitFeatures.cmake	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Source/cmake/WebKitFeatures.cmake	2013-12-05 03:42:15 UTC (rev 160156)
@@ -113,7 +113,7 @@
     WEBKIT_OPTION_DEFINE(ENABLE_SQL_DATABASE "Toggle SQL Database Support" ON)
     WEBKIT_OPTION_DEFINE(ENABLE_SVG "Toggle SVG support" ON)
     WEBKIT_OPTION_DEFINE(ENABLE_SVG_FONTS "Toggle SVG fonts support (imples SVG support)" ON)
-    WEBKIT_OPTION_DEFINE(ENABLE_TEMPLATE_ELEMENT "Toggle Template support" OFF)
+    WEBKIT_OPTION_DEFINE(ENABLE_TEMPLATE_ELEMENT "Toggle Template support" ON)
     WEBKIT_OPTION_DEFINE(ENABLE_TEXT_AUTOSIZING "Toggle Text auto sizing support" OFF)
     WEBKIT_OPTION_DEFINE(ENABLE_THREADED_HTML_PARSER, "Toggle threaded HTML parser support" OFF)
     WEBKIT_OPTION_DEFINE(ENABLE_TOUCH_EVENTS "Toggle Touch Events support" OFF)

Modified: trunk/Tools/ChangeLog (160155 => 160156)


--- trunk/Tools/ChangeLog	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Tools/ChangeLog	2013-12-05 03:42:15 UTC (rev 160156)
@@ -1,3 +1,12 @@
+2013-12-04  Ryosuke Niwa  <[email protected]>
+
+        Enable HTMLTemplateElement by default
+        https://bugs.webkit.org/show_bug.cgi?id=123851
+
+        Reviewed by Antti Koivisto.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2013-12-04  Jozsef Berta  <[email protected]>
 
         [EFL] Bumping GStreamer version to 1.2.1

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (160155 => 160156)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-12-05 03:36:35 UTC (rev 160155)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-12-05 03:42:15 UTC (rev 160156)
@@ -426,7 +426,7 @@
       define => "USE_SYSTEM_MALLOC", default => (isBlackBerry() || isWinCE()), value => \$systemMallocSupport },
 
     { option => "template-element", desc => "Toggle HTMLTemplateElement support",
-      define => "ENABLE_TEMPLATE_ELEMENT", default => (isAppleWebKit() || isEfl() || isGtk()), value => \$templateElementSupport },
+      define => "ENABLE_TEMPLATE_ELEMENT", default => 1, value => \$templateElementSupport },
 
     { option => "text-autosizing", desc => "Toggle Text Autosizing support",
       define => "ENABLE_TEXT_AUTOSIZING", default => isBlackBerry(), value => \$textAutosizingSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to