Title: [119743] trunk/Source/WebCore
- Revision
- 119743
- Author
- [email protected]
- Date
- 2012-06-07 11:46:51 -0700 (Thu, 07 Jun 2012)
Log Message
Buildfix for ENABLE_OVERFLOW_SCROLLING=0 (though defined)
https://bugs.webkit.org/show_bug.cgi?id=88564
Reviewed by Adam Barth.
Where ENABLE(X) mandates that X both has to be defined and evaluates to
true as a lone preprocessor statement, there were two places in the CSS
property and value input files where only was checked whether is has
been defined. This also goes against other #ifdefs in those files.
* css/CSSPropertyNames.in:
* css/CSSValueKeywords.in:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (119742 => 119743)
--- trunk/Source/WebCore/ChangeLog 2012-06-07 18:37:39 UTC (rev 119742)
+++ trunk/Source/WebCore/ChangeLog 2012-06-07 18:46:51 UTC (rev 119743)
@@ -1,3 +1,18 @@
+2012-06-07 Peter Beverloo <[email protected]>
+
+ Buildfix for ENABLE_OVERFLOW_SCROLLING=0 (though defined)
+ https://bugs.webkit.org/show_bug.cgi?id=88564
+
+ Reviewed by Adam Barth.
+
+ Where ENABLE(X) mandates that X both has to be defined and evaluates to
+ true as a lone preprocessor statement, there were two places in the CSS
+ property and value input files where only was checked whether is has
+ been defined. This also goes against other #ifdefs in those files.
+
+ * css/CSSPropertyNames.in:
+ * css/CSSValueKeywords.in:
+
2012-06-07 Ami Fischman <[email protected]>
Plumb CORS attribute information from HTMLMediaElement to media players so it can be used
Modified: trunk/Source/WebCore/css/CSSPropertyNames.in (119742 => 119743)
--- trunk/Source/WebCore/css/CSSPropertyNames.in 2012-06-07 18:37:39 UTC (rev 119742)
+++ trunk/Source/WebCore/css/CSSPropertyNames.in 2012-06-07 18:46:51 UTC (rev 119743)
@@ -390,6 +390,6 @@
#if defined(ENABLE_DASHBOARD_SUPPORT) && ENABLE_DASHBOARD_SUPPORT
-webkit-dashboard-region
#endif
-#if defined(ENABLE_OVERFLOW_SCROLLING)
+#if defined(ENABLE_OVERFLOW_SCROLLING) && ENABLE_OVERFLOW_SCROLLING
-webkit-overflow-scrolling
#endif
Modified: trunk/Source/WebCore/css/CSSValueKeywords.in (119742 => 119743)
--- trunk/Source/WebCore/css/CSSValueKeywords.in 2012-06-07 18:37:39 UTC (rev 119742)
+++ trunk/Source/WebCore/css/CSSValueKeywords.in 2012-06-07 18:46:51 UTC (rev 119743)
@@ -820,7 +820,7 @@
manual
// auto
-#if defined(ENABLE_OVERFLOW_SCROLLING)
+#if defined(ENABLE_OVERFLOW_SCROLLING) && ENABLE_OVERFLOW_SCROLLING
// -webkit-overflow-scrolling
// auto
touch
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes