Changeset 159716 in webkit


Ignore:
Timestamp:
Nov 22, 2013 2:57:02 PM (10 years ago)
Author:
Manuel Rego Casasnovas
Message:

[GTK] Review enabled/disabled CSS features for release builds
https://bugs.webkit.org/show_bug.cgi?id=124791

Reviewed by Martin Robinson.

Enable and disable some CSS features according to what last versions of
Safari ship or not.

  • Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and

ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
ENABLE_CSS_SHAPES.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r159679 r159716  
     12013-11-22  Manuel Rego Casasnovas  <rego@igalia.com>
     2
     3        [GTK] Review enabled/disabled CSS features for release builds
     4        https://bugs.webkit.org/show_bug.cgi?id=124791
     5
     6        Reviewed by Martin Robinson.
     7
     8        Enable and disable some CSS features according to what last versions of
     9        Safari ship or not.
     10
     11        * Source/autotools/SetupWebKitFeatures.m4: Enable ENABLE_CSS_REGIONS and
     12        ENABLE_CSS_STICKY_POSITION. Disable ENABLE_CSS_EXCLUSIONS and
     13        ENABLE_CSS_SHAPES.
     14
    1152013-11-21  Peter Molnar  <pmolnar.u-szeged@partner.samsung.com>
    216
  • trunk/Source/autotools/SetupWebKitFeatures.m4

    r159679 r159716  
    104104    ENABLE_CSS_COMPOSITING=0 \
    105105    ENABLE_CSS_DEVICE_ADAPTATION=0 \
    106     ENABLE_CSS_EXCLUSIONS=1 \
     106    ENABLE_CSS_EXCLUSIONS=0 \
    107107    ENABLE_CSS_IMAGE_ORIENTATION=0 \
    108108    ENABLE_CSS_IMAGE_RESOLUTION=0 \
    109109    ENABLE_CSS_IMAGE_SET=0 \
    110     ENABLE_CSS_REGIONS=0 \
    111     ENABLE_CSS_SHAPES=1 \
    112     ENABLE_CSS_STICKY_POSITION=0 \
     110    ENABLE_CSS_REGIONS=1 \
     111    ENABLE_CSS_SHAPES=0 \
     112    ENABLE_CSS_STICKY_POSITION=1 \
    113113    ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED=0 \
    114114    ENABLE_CSS_VARIABLES=0 \
Note: See TracChangeset for help on using the changeset viewer.