Changeset 126197 in webkit


Ignore:
Timestamp:
Aug 21, 2012 3:35:21 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> 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:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r126196 r126197  
     12012-08-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [EFL] Enable CSS Text Decoration by default
     4        https://bugs.webkit.org/show_bug.cgi?id=94483
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        By enabling this feature by default, it will get tested by the bots
     9        and we can make sure no regressions will happen.
     10
     11        * Source/cmake/OptionsEfl.cmake:
     12
    1132012-08-21  Ulan Degenbaev  <ulan@chromium.org>
    214
  • trunk/LayoutTests/ChangeLog

    r126195 r126197  
     12012-08-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [EFL] Enable CSS Text Decoration by default
     4        https://bugs.webkit.org/show_bug.cgi?id=94483
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        Remove test that will now pass from the skip list.
     9
     10        * platform/efl/TestExpectations:
     11
    1122012-08-21  Taiju Tsuiki  <tzik@chromium.org>
    213
  • trunk/LayoutTests/platform/efl/TestExpectations

    r126178 r126197  
    5757// CSS image-orientation is not yet enabled.
    5858BUGWK89052 SKIP : fast/css/image-orientation = PASS
    59 
    60 // CSS3 Text Decoration support is not yet enabled (needs ENABLE_CSS3_TEXT_DECORATION).
    61 BUGWK58491 SKIP : fast/css3-text-decoration = PASS
    6259
    6360// This test assumes we cannot play RTSP, but we can.
  • trunk/Source/cmake/OptionsEfl.cmake

    r126010 r126197  
    6565WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS ON)
    6666WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BLOB ON)
     67WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_TEXT_DECORATION ON)
    6768WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_IMAGE_SET ON)
    6869WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_VARIABLES ON)
  • trunk/Tools/ChangeLog

    r126191 r126197  
     12012-08-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [EFL] Enable CSS Text Decoration by default
     4        https://bugs.webkit.org/show_bug.cgi?id=94483
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        * Scripts/webkitperl/FeatureList.pm:
     9
    1102012-08-21  Benjamin Poulain  <bpoulain@apple.com>
    211
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r126079 r126197  
    173173
    174174    { option => "css3-text-decoration", desc => "Toggle CSS3 Text Decoration support",
    175       define => "ENABLE_CSS3_TEXT_DECORATION", default => 0, value => \$css3TextDecorationSupport },
     175      define => "ENABLE_CSS3_TEXT_DECORATION", default => isEfl(), value => \$css3TextDecorationSupport },
    176176
    177177    { option => "css-hierarchies", desc => "Toggle CSS Hierarchy support",
Note: See TracChangeset for help on using the changeset viewer.