Title: [136429] trunk/Tools
Revision
136429
Author
[email protected]
Date
2012-12-03 12:45:39 -0800 (Mon, 03 Dec 2012)

Log Message

Enable CSS3 background-position offset by default
https://bugs.webkit.org/show_bug.cgi?id=103917

Reviewed by Benjamin Poulain.

Even though each port may enable or not the feature we still need
to pass it at configure time otherwise it will be disabled.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (136428 => 136429)


--- trunk/Tools/ChangeLog	2012-12-03 20:41:30 UTC (rev 136428)
+++ trunk/Tools/ChangeLog	2012-12-03 20:45:39 UTC (rev 136429)
@@ -1,3 +1,15 @@
+2012-12-03  Alexis Menard  <[email protected]>
+
+        Enable CSS3 background-position offset by default
+        https://bugs.webkit.org/show_bug.cgi?id=103917
+
+        Reviewed by Benjamin Poulain.
+
+        Even though each port may enable or not the feature we still need
+        to pass it at configure time otherwise it will be disabled.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2012-12-03  Sudarsana Nagineni  <[email protected]>
 
         Unreviewed. Adding myself to committers.py.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (136428 => 136429)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-12-03 20:41:30 UTC (rev 136428)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-12-03 20:45:39 UTC (rev 136429)
@@ -179,7 +179,7 @@
       define => "ENABLE_CSS_FILTERS", default => isAppleWebKit() || isBlackBerry(), value => \$cssFiltersSupport },
 
     { option => "css3-background", desc => "Toggle CSS3 Background support",
-      define => "ENABLE_CSS3_BACKGROUND", default => 0, value => \$css3BackgroundSupport },
+      define => "ENABLE_CSS3_BACKGROUND", default => 1, value => \$css3BackgroundSupport },
 
     { option => "css3-conditional-rules", desc => "Toggle CSS3 Conditional Rules support (i.e. \@supports)",
       define => "ENABLE_CSS3_CONDITIONAL_RULES", default => 0, value => \$css3ConditionalRulesSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to