Title: [171947] trunk
Revision
171947
Author
betra...@adobe.com
Date
2014-08-01 13:43:56 -0700 (Fri, 01 Aug 2014)

Log Message

[Feature Queries] Enable Feature Queries on EFL/GTK
https://bugs.webkit.org/show_bug.cgi?id=134902

Reviewed by Benjamin Poulain.

.:
Enable CSS Feature Queries by default on the EFL and GTK
platforms.

* Source/cmake/OptionsEfl.cmake:
* Source/cmake/OptionsGTK.cmake:

Tools:
Turn the feature on by default for the build script.

* Scripts/webkitperl/FeatureList.pm:

LayoutTests:
Resume running the CSS Feature Query tests on the EFL and GTK platforms.

* platform/efl/TestExpectations:
* platform/gtk/TestExpectations:

Modified Paths

Diff

Modified: trunk/ChangeLog (171946 => 171947)


--- trunk/ChangeLog	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/ChangeLog	2014-08-01 20:43:56 UTC (rev 171947)
@@ -1,3 +1,16 @@
+2014-08-01  Bear Travis  <betra...@adobe.com>
+
+        [Feature Queries] Enable Feature Queries on EFL/GTK
+        https://bugs.webkit.org/show_bug.cgi?id=134902
+
+        Reviewed by Benjamin Poulain.
+
+        Enable CSS Feature Queries by default on the EFL and GTK
+        platforms.
+
+        * Source/cmake/OptionsEfl.cmake:
+        * Source/cmake/OptionsGTK.cmake:
+
 2014-08-01  Alex Christensen  <achristen...@webkit.org>
 
         Progress towards cmake on Windows.

Modified: trunk/LayoutTests/ChangeLog (171946 => 171947)


--- trunk/LayoutTests/ChangeLog	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/LayoutTests/ChangeLog	2014-08-01 20:43:56 UTC (rev 171947)
@@ -1,3 +1,15 @@
+2014-08-01  Bear Travis  <betra...@adobe.com>
+
+        [Feature Queries] Enable Feature Queries on EFL/GTK
+        https://bugs.webkit.org/show_bug.cgi?id=134902
+
+        Reviewed by Benjamin Poulain.
+
+        Resume running the CSS Feature Query tests on the EFL and GTK platforms.
+
+        * platform/efl/TestExpectations:
+        * platform/gtk/TestExpectations:
+
 2014-07-30  Myles C. Maxfield  <mmaxfi...@apple.com>
 
         URLs in srcset attributes are not made absolute upon copy and paste

Modified: trunk/LayoutTests/platform/efl/TestExpectations (171946 => 171947)


--- trunk/LayoutTests/platform/efl/TestExpectations	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2014-08-01 20:43:56 UTC (rev 171947)
@@ -1287,11 +1287,6 @@
 
 webkit.org/b/99878 css3/flexbox/flexbox-baseline-margins.html [ Missing ImageOnlyFailure ]
 
-# css3-conditionals support is not yet enabled.
-webkit.org/b/86146 css3/supports.html
-webkit.org/b/104822 css3/supports-cssom.html
-webkit.org/b/100324 css3/supports-dom-api.html
-
 # Occasionally fails if run after right after
 # fast/selectors/unqualified-hover-quirks.html or itself.
 webkit.org/b/10890 fast/selectors/unqualified-hover-strict.html [ Failure Pass ]

Modified: trunk/LayoutTests/platform/gtk/TestExpectations (171946 => 171947)


--- trunk/LayoutTests/platform/gtk/TestExpectations	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/LayoutTests/platform/gtk/TestExpectations	2014-08-01 20:43:56 UTC (rev 171947)
@@ -321,11 +321,6 @@
 # HIDDEN_PAGE_DOM_TIMER_THROTTLING is not enabled
 webkit.org/b/99059 fast/dom/timer-throttling-hidden-page.html [ Failure ]
 
-# css3-conditionals support is not yet enabled.
-webkit.org/b/86146 css3/supports.html
-webkit.org/b/104822 css3/supports-cssom.html
-webkit.org/b/100324 css3/supports-dom-api.html
-
 # Requires Resolution Media Query support
 webkit.org/b/100137 fast/media/mq-resolution.html [ Failure ]
 webkit.org/b/100137 fast/media/mq-resolution-dpi-dpcm-warning.html [ Failure ]

Modified: trunk/Source/cmake/OptionsEfl.cmake (171946 => 171947)


--- trunk/Source/cmake/OptionsEfl.cmake	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/Source/cmake/OptionsEfl.cmake	2014-08-01 20:43:56 UTC (rev 171947)
@@ -55,6 +55,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_API_TESTS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_CONDITIONAL_RULES ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_TEXT ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_DEVICE_ADAPTATION ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_FILTERS ON)

Modified: trunk/Source/cmake/OptionsGTK.cmake (171946 => 171947)


--- trunk/Source/cmake/OptionsGTK.cmake	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/Source/cmake/OptionsGTK.cmake	2014-08-01 20:43:56 UTC (rev 171947)
@@ -99,6 +99,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ACCESSIBILITY ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CANVAS_PATH OFF)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_CONDITIONAL_RULES ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_TEXT OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_DEVICE_ADAPTATION OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_FILTERS ON)

Modified: trunk/Tools/ChangeLog (171946 => 171947)


--- trunk/Tools/ChangeLog	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/Tools/ChangeLog	2014-08-01 20:43:56 UTC (rev 171947)
@@ -1,3 +1,14 @@
+2014-08-01  Bear Travis  <betra...@adobe.com>
+
+        [Feature Queries] Enable Feature Queries on EFL/GTK
+        https://bugs.webkit.org/show_bug.cgi?id=134902
+
+        Reviewed by Benjamin Poulain.
+
+        Turn the feature on by default for the build script.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2014-08-01  Timothy Horton  <timothy_hor...@apple.com>
 
         Build fix for 32-bit after r171926.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (171946 => 171947)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2014-08-01 20:17:25 UTC (rev 171946)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2014-08-01 20:43:56 UTC (rev 171947)
@@ -185,7 +185,7 @@
       define => "ENABLE_CSS_GRID_LAYOUT", default => 1, value => \$cssGridLayoutSupport },
 
     { option => "css3-conditional-rules", desc => "Toggle CSS3 Conditional Rules support (i.e. \@supports)",
-      define => "ENABLE_CSS3_CONDITIONAL_RULES", default => 0, value => \$css3ConditionalRulesSupport },
+      define => "ENABLE_CSS3_CONDITIONAL_RULES", default => 1, value => \$css3ConditionalRulesSupport },
 
     { option => "css3-text", desc => "Toggle CSS3 Text support",
       define => "ENABLE_CSS3_TEXT", default => (isEfl() || isGtk()), value => \$css3TextSupport },
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to