⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 150025 in webkit


Ignore:
Timestamp:
May 13, 2013, 11:37:13 AM (13 years ago)
Author:
betravis@adobe.com
Message:

[css exclusions] Enable CSS Exclusions by default when CSS_EXCLUSIONS is set
​https://bugs.webkit.org/show_bug.cgi?id=115919

Reviewed by Dean Jackson.

Source/WebCore:

Change the RuntimeEnabledFeatures::isCSSExclusionsEnabled boolean to default
to true. CSS Exclusions can still be enabled / disabled in platforms by
setting the CSS_EXCLUSIONS compile flag in one of the FeatureDefine files.

Test: fast/exclusions/css-exclusions-enabled.html

  • bindings/generic/RuntimeEnabledFeatures.cpp:

(WebCore):

LayoutTests:

Adding a test to make sure CSS Exclusions can be enabled, and are enabled by
default.

  • fast/exclusions/css-exclusions-enabled-expected.txt: Added.
  • fast/exclusions/css-exclusions-enabled.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r150023 r150025  
     12013-05-13  Bear Travis  <betravis@adobe.com>
     2
     3        [css exclusions] Enable CSS Exclusions by default when CSS_EXCLUSIONS is set
     4        https://bugs.webkit.org/show_bug.cgi?id=115919
     5
     6        Reviewed by Dean Jackson.
     7
     8        Adding a test to make sure CSS Exclusions can be enabled, and are enabled by
     9        default.
     10
     11        * fast/exclusions/css-exclusions-enabled-expected.txt: Added.
     12        * fast/exclusions/css-exclusions-enabled.html: Added.
     13
    1142013-05-13  Suchit Agrawal  <a.suchit@samsung.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r150023 r150025  
     12013-05-13  Bear Travis  <betravis@adobe.com>
     2
     3        [css exclusions] Enable CSS Exclusions by default when CSS_EXCLUSIONS is set
     4        https://bugs.webkit.org/show_bug.cgi?id=115919
     5
     6        Reviewed by Dean Jackson.
     7
     8        Change the RuntimeEnabledFeatures::isCSSExclusionsEnabled boolean to default
     9        to true. CSS Exclusions can still be enabled / disabled in platforms by
     10        setting the CSS_EXCLUSIONS compile flag in one of the FeatureDefine files.
     11
     12        Test: fast/exclusions/css-exclusions-enabled.html
     13
     14        * bindings/generic/RuntimeEnabledFeatures.cpp:
     15        (WebCore):
     16
    1172013-05-13  Suchit Agrawal  <a.suchit@samsung.com>
    218
  • trunk/Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r148731 r150025  
    5656bool RuntimeEnabledFeatures::isSpeechInputEnabled = true;
    5757bool RuntimeEnabledFeatures::isCanvasPathEnabled = false;
    58 bool RuntimeEnabledFeatures::isCSSExclusionsEnabled = false;
     58bool RuntimeEnabledFeatures::isCSSExclusionsEnabled = true;
    5959bool RuntimeEnabledFeatures::isCSSRegionsEnabled = false;
    6060bool RuntimeEnabledFeatures::isCSSCompositingEnabled = false;
Note: See TracChangeset for help on using the changeset viewer.