Title: [153730] trunk/Source/WTF
Revision
153730
Author
benja...@webkit.org
Date
2013-08-05 17:28:44 -0700 (Mon, 05 Aug 2013)

Log Message

Disable <meter> by default on iOS, it is enabled through the xconfig files
https://bugs.webkit.org/show_bug.cgi?id=119503

Patch by Benjamin Poulain <bpoul...@apple.com> on 2013-08-05
Reviewed by Alexey Proskuryakov.

* wtf/FeatureDefines.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (153729 => 153730)


--- trunk/Source/WTF/ChangeLog	2013-08-05 23:06:30 UTC (rev 153729)
+++ trunk/Source/WTF/ChangeLog	2013-08-06 00:28:44 UTC (rev 153730)
@@ -1,3 +1,12 @@
+2013-08-05  Benjamin Poulain  <bpoul...@apple.com>
+
+        Disable <meter> by default on iOS, it is enabled through the xconfig files
+        https://bugs.webkit.org/show_bug.cgi?id=119503
+
+        Reviewed by Alexey Proskuryakov.
+
+        * wtf/FeatureDefines.h:
+
 2013-08-05  Oliver Hunt  <oli...@apple.com>
 
         Move TypedArray implementation into JSC

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (153729 => 153730)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2013-08-05 23:06:30 UTC (rev 153729)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2013-08-06 00:28:44 UTC (rev 153730)
@@ -80,6 +80,10 @@
 #define ENABLE_ICONDATABASE 0
 #endif
 
+#if !defined(ENABLE_METER_ELEMENT)
+#define ENABLE_METER_ELEMENT 0
+#endif
+
 #if !defined(ENABLE_NETSCAPE_PLUGIN_API)
 #define ENABLE_NETSCAPE_PLUGIN_API 0
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to