Title: [166749] trunk
Revision
166749
Author
bfulg...@apple.com
Date
2014-04-03 15:47:22 -0700 (Thu, 03 Apr 2014)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (166748 => 166749)


--- trunk/Source/WebCore/ChangeLog	2014-04-03 22:44:58 UTC (rev 166748)
+++ trunk/Source/WebCore/ChangeLog	2014-04-03 22:47:22 UTC (rev 166749)
@@ -1,3 +1,15 @@
+2014-04-03  Brent Fulgham  <bfulg...@apple.com>
+
+        [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)
+
 2014-04-03  Simon Fraser  <simon.fra...@apple.com>
 
         Pixelated WebView when display is changed from hiDPI to regularDPI

Modified: trunk/Source/WebCore/css/CSSAllInOne.cpp (166748 => 166749)


--- trunk/Source/WebCore/css/CSSAllInOne.cpp	2014-04-03 22:44:58 UTC (rev 166748)
+++ trunk/Source/WebCore/css/CSSAllInOne.cpp	2014-04-03 22:47:22 UTC (rev 166749)
@@ -43,6 +43,9 @@
 #include "CSSFontSelector.cpp"
 #include "CSSFunctionValue.cpp"
 #include "CSSGradientValue.cpp"
+#if ENABLE(CSS_GRID_LAYOUT)
+#include "CSSGridLineNamesValue.cpp"
+#endif
 #include "CSSGroupingRule.cpp"
 #include "CSSImageGeneratorValue.cpp"
 #include "CSSImageSetValue.cpp"

Modified: trunk/WebKitLibraries/ChangeLog (166748 => 166749)


--- trunk/WebKitLibraries/ChangeLog	2014-04-03 22:44:58 UTC (rev 166748)
+++ trunk/WebKitLibraries/ChangeLog	2014-04-03 22:47:22 UTC (rev 166749)
@@ -1,3 +1,16 @@
+2014-04-03  Brent Fulgham  <bfulg...@apple.com>
+
+        [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:
+
 2014-04-02  Dean Jackson  <d...@apple.com>
 
         Update WKSI.

Modified: trunk/WebKitLibraries/win/tools/vsprops/FeatureDefines.props (166748 => 166749)


--- trunk/WebKitLibraries/win/tools/vsprops/FeatureDefines.props	2014-04-03 22:44:58 UTC (rev 166748)
+++ trunk/WebKitLibraries/win/tools/vsprops/FeatureDefines.props	2014-04-03 22:47:22 UTC (rev 166749)
@@ -15,7 +15,7 @@
     <ENABLE_CSS_COMPOSITING />
     <ENABLE_CSS_EXCLUSIONS />
     <ENABLE_CSS_FILTERS>ENABLE_CSS_FILTERS</ENABLE_CSS_FILTERS>
-    <ENABLE_CSS_GRID_LAYOUT />
+    <ENABLE_CSS_GRID_LAYOUT>ENABLE_CSS_GRID_LAYOUT</ENABLE_CSS_GRID_LAYOUT>
     <ENABLE_CSS_IMAGE_SET>ENABLE_CSS_IMAGE_SET</ENABLE_CSS_IMAGE_SET>
     <ENABLE_CSS_REGIONS>ENABLE_CSS_REGIONS</ENABLE_CSS_REGIONS>
     <ENABLE_CSS_SHADERS />

Modified: trunk/WebKitLibraries/win/tools/vsprops/FeatureDefinesCairo.props (166748 => 166749)


--- trunk/WebKitLibraries/win/tools/vsprops/FeatureDefinesCairo.props	2014-04-03 22:44:58 UTC (rev 166748)
+++ trunk/WebKitLibraries/win/tools/vsprops/FeatureDefinesCairo.props	2014-04-03 22:47:22 UTC (rev 166749)
@@ -15,7 +15,7 @@
     <ENABLE_CSS_COMPOSITING />
     <ENABLE_CSS_EXCLUSIONS />
     <ENABLE_CSS_FILTERS></ENABLE_CSS_FILTERS>
-    <ENABLE_CSS_GRID_LAYOUT />
+    <ENABLE_CSS_GRID_LAYOUT>ENABLE_CSS_GRID_LAYOUT</ENABLE_CSS_GRID_LAYOUT>
     <ENABLE_CSS_IMAGE_SET>ENABLE_CSS_IMAGE_SET</ENABLE_CSS_IMAGE_SET>
     <ENABLE_CSS_REGIONS>ENABLE_CSS_REGIONS</ENABLE_CSS_REGIONS>
     <ENABLE_CSS_SHADERS />
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to