Title: [151561] trunk/Source/WTF
Revision
151561
Author
[email protected]
Date
2013-06-13 10:48:20 -0700 (Thu, 13 Jun 2013)

Log Message

[WinCairo] Correct FeatureDefines.h Default for ENABLE_VIEW_MODE_CSS_MEDIA
https://bugs.webkit.org/show_bug.cgi?id=114396

Reviewed by Dean Jackson.

* wtf/FeatureDefines.h: The WinCairo port does not (currently) support Media elements,
so make sure we do not enable this feature by default for that port.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (151560 => 151561)


--- trunk/Source/WTF/ChangeLog	2013-06-13 17:44:03 UTC (rev 151560)
+++ trunk/Source/WTF/ChangeLog	2013-06-13 17:48:20 UTC (rev 151561)
@@ -1,5 +1,15 @@
 2013-06-13  Brent Fulgham  <[email protected]>
 
+        [WinCairo] Correct FeatureDefines.h Default for ENABLE_VIEW_MODE_CSS_MEDIA
+        https://bugs.webkit.org/show_bug.cgi?id=114396
+
+        Reviewed by Dean Jackson.
+
+        * wtf/FeatureDefines.h: The WinCairo port does not (currently) support Media elements,
+        so make sure we do not enable this feature by default for that port.
+
+2013-06-13  Brent Fulgham  <[email protected]>
+
         [Windows] Unreviewed gardening.
 
         * WTF.vcxproj/WTF.vcxproj: Add FeatureDefines.h to visible files.

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (151560 => 151561)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2013-06-13 17:44:03 UTC (rev 151560)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2013-06-13 17:48:20 UTC (rev 151561)
@@ -229,6 +229,10 @@
 #define ENABLE_WEB_ARCHIVE 1
 #endif
 
+#if !defined(ENABLE_VIEW_MODE_CSS_MEDIA)
+#define ENABLE_VIEW_MODE_CSS_MEDIA 0
+#endif
+
 #endif /* PLATFORM(WIN_CAIRO) */
 
 /* --------- EFL port (Unix) --------- */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to