Title: [126197] trunk
Revision
126197
Author
[email protected]
Date
2012-08-21 15:35:21 -0700 (Tue, 21 Aug 2012)

Log Message

[EFL] Enable CSS Text Decoration by default
https://bugs.webkit.org/show_bug.cgi?id=94483

Patch by Thiago Marcos P. Santos <[email protected]> on 2012-08-21
Reviewed by Kenneth Rohde Christiansen.

.:

By enabling this feature by default, it will get tested by the bots
and we can make sure no regressions will happen.

* Source/cmake/OptionsEfl.cmake:

Tools:

* Scripts/webkitperl/FeatureList.pm:

LayoutTests:

Remove test that will now pass from the skip list.

* platform/efl/TestExpectations:

Modified Paths

Diff

Modified: trunk/ChangeLog (126196 => 126197)


--- trunk/ChangeLog	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/ChangeLog	2012-08-21 22:35:21 UTC (rev 126197)
@@ -1,3 +1,15 @@
+2012-08-21  Thiago Marcos P. Santos  <[email protected]>
+
+        [EFL] Enable CSS Text Decoration by default
+        https://bugs.webkit.org/show_bug.cgi?id=94483
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        By enabling this feature by default, it will get tested by the bots
+        and we can make sure no regressions will happen.
+
+        * Source/cmake/OptionsEfl.cmake:
+
 2012-08-21  Ulan Degenbaev  <[email protected]>
 
         Call AdjustAmountOfExternalAllocatedMemory when V8ArrayBuffer constructed and destructed

Modified: trunk/LayoutTests/ChangeLog (126196 => 126197)


--- trunk/LayoutTests/ChangeLog	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/LayoutTests/ChangeLog	2012-08-21 22:35:21 UTC (rev 126197)
@@ -1,3 +1,14 @@
+2012-08-21  Thiago Marcos P. Santos  <[email protected]>
+
+        [EFL] Enable CSS Text Decoration by default
+        https://bugs.webkit.org/show_bug.cgi?id=94483
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Remove test that will now pass from the skip list.
+
+        * platform/efl/TestExpectations:
+
 2012-08-21  Taiju Tsuiki  <[email protected]>
 
         Web Inspector: Completion events of InspectorFileSystemAgent should be fired asynchronously.

Modified: trunk/LayoutTests/platform/efl/TestExpectations (126196 => 126197)


--- trunk/LayoutTests/platform/efl/TestExpectations	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2012-08-21 22:35:21 UTC (rev 126197)
@@ -57,9 +57,6 @@
 // CSS image-orientation is not yet enabled.
 BUGWK89052 SKIP : fast/css/image-orientation = PASS
 
-// CSS3 Text Decoration support is not yet enabled (needs ENABLE_CSS3_TEXT_DECORATION).
-BUGWK58491 SKIP : fast/css3-text-decoration = PASS
-
 // This test assumes we cannot play RTSP, but we can.
 BUGWKEFL SKIP : media/unsupported-rtsp.html = TIMEOUT
 

Modified: trunk/Source/cmake/OptionsEfl.cmake (126196 => 126197)


--- trunk/Source/cmake/OptionsEfl.cmake	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/Source/cmake/OptionsEfl.cmake	2012-08-21 22:35:21 UTC (rev 126197)
@@ -64,6 +64,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_API_TESTS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BLOB ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_TEXT_DECORATION ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_IMAGE_SET ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_VARIABLES ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CUSTOM_SCHEME_HANDLER ON)

Modified: trunk/Tools/ChangeLog (126196 => 126197)


--- trunk/Tools/ChangeLog	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/Tools/ChangeLog	2012-08-21 22:35:21 UTC (rev 126197)
@@ -1,3 +1,12 @@
+2012-08-21  Thiago Marcos P. Santos  <[email protected]>
+
+        [EFL] Enable CSS Text Decoration by default
+        https://bugs.webkit.org/show_bug.cgi?id=94483
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2012-08-21  Benjamin Poulain  <[email protected]>
 
         Store CString data in the CStringBuffer to avoid the double indirection

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (126196 => 126197)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-08-21 22:32:32 UTC (rev 126196)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2012-08-21 22:35:21 UTC (rev 126197)
@@ -172,7 +172,7 @@
       define => "ENABLE_CSS3_FLEXBOX", default => 1, value => \$css3FlexboxSupport },
 
     { option => "css3-text-decoration", desc => "Toggle CSS3 Text Decoration support",
-      define => "ENABLE_CSS3_TEXT_DECORATION", default => 0, value => \$css3TextDecorationSupport },
+      define => "ENABLE_CSS3_TEXT_DECORATION", default => isEfl(), value => \$css3TextDecorationSupport },
 
     { option => "css-hierarchies", desc => "Toggle CSS Hierarchy support",
       define => "ENABLE_CSS_HIERARCHIES", default => 0, value => \$cssHierarchiesSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to