Changeset 166749 in webkit


Ignore:
Timestamp:
Apr 3, 2014 3:47:22 PM (10 years ago)
Author:
Brent Fulgham
Message:

Source/WebCore: [Win] Turn on ENABLE_CSS_GRID_LAYOUT
https://bugs.webkit.org/show_bug.cgi?id=131147

Reviewed by Simon Fraser.

Covered by existing fast/css/getComputedStyle tests.

  • css/CSSAllInOne.cpp: Add CSSGridLineNamesValue.cpp when building

with ENABLE(CSS_GRID_LAYOUT)

WebKitLibraries: [Win] Enable the CSS_GRID_LAYOUT feature.
https://bugs.webkit.org/show_bug.cgi?id=131147

Reviewed by Simon Fraser.

Just like the CANVAS_PATH feature, this seems to have been
overlooked when it was turned on for other ports.

  • win/tools/vsprops/FeatureDefines.props:
  • win/tools/vsprops/FeatureDefinesCairo.props:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166748 r166749  
     12014-04-03  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Turn on ENABLE_CSS_GRID_LAYOUT
     4        https://bugs.webkit.org/show_bug.cgi?id=131147
     5
     6        Reviewed by Simon Fraser.
     7
     8        Covered by existing fast/css/getComputedStyle tests.
     9
     10        * css/CSSAllInOne.cpp: Add CSSGridLineNamesValue.cpp when building
     11        with ENABLE(CSS_GRID_LAYOUT)
     12
    1132014-04-03  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/css/CSSAllInOne.cpp

    r165676 r166749  
    4444#include "CSSFunctionValue.cpp"
    4545#include "CSSGradientValue.cpp"
     46#if ENABLE(CSS_GRID_LAYOUT)
     47#include "CSSGridLineNamesValue.cpp"
     48#endif
    4649#include "CSSGroupingRule.cpp"
    4750#include "CSSImageGeneratorValue.cpp"
  • trunk/WebKitLibraries/ChangeLog

    r166683 r166749  
     12014-04-03  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Win] Enable the CSS_GRID_LAYOUT feature.
     4        https://bugs.webkit.org/show_bug.cgi?id=131147
     5
     6        Reviewed by Simon Fraser.
     7
     8        Just like the CANVAS_PATH feature, this seems to have been
     9        overlooked when it was turned on for other ports.
     10
     11        * win/tools/vsprops/FeatureDefines.props:
     12        * win/tools/vsprops/FeatureDefinesCairo.props:
     13
    1142014-04-02  Dean Jackson  <dino@apple.com>
    215
  • trunk/WebKitLibraries/win/tools/vsprops/FeatureDefines.props

    r166660 r166749  
    1616    <ENABLE_CSS_EXCLUSIONS />
    1717    <ENABLE_CSS_FILTERS>ENABLE_CSS_FILTERS</ENABLE_CSS_FILTERS>
    18     <ENABLE_CSS_GRID_LAYOUT />
     18    <ENABLE_CSS_GRID_LAYOUT>ENABLE_CSS_GRID_LAYOUT</ENABLE_CSS_GRID_LAYOUT>
    1919    <ENABLE_CSS_IMAGE_SET>ENABLE_CSS_IMAGE_SET</ENABLE_CSS_IMAGE_SET>
    2020    <ENABLE_CSS_REGIONS>ENABLE_CSS_REGIONS</ENABLE_CSS_REGIONS>
  • trunk/WebKitLibraries/win/tools/vsprops/FeatureDefinesCairo.props

    r166660 r166749  
    1616    <ENABLE_CSS_EXCLUSIONS />
    1717    <ENABLE_CSS_FILTERS></ENABLE_CSS_FILTERS>
    18     <ENABLE_CSS_GRID_LAYOUT />
     18    <ENABLE_CSS_GRID_LAYOUT>ENABLE_CSS_GRID_LAYOUT</ENABLE_CSS_GRID_LAYOUT>
    1919    <ENABLE_CSS_IMAGE_SET>ENABLE_CSS_IMAGE_SET</ENABLE_CSS_IMAGE_SET>
    2020    <ENABLE_CSS_REGIONS>ENABLE_CSS_REGIONS</ENABLE_CSS_REGIONS>
Note: See TracChangeset for help on using the changeset viewer.