Title: [205323] trunk/Source/WebCore
Revision
205323
Author
[email protected]
Date
2016-09-01 15:13:58 -0700 (Thu, 01 Sep 2016)

Log Message

Fix ENABLE(CSS_GRID_LAYOUT) guards harder after r205102/r205292

Unreviewed. Silence unused function warning.

* css/CSSComputedStyleDeclaration.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (205322 => 205323)


--- trunk/Source/WebCore/ChangeLog	2016-09-01 22:11:01 UTC (rev 205322)
+++ trunk/Source/WebCore/ChangeLog	2016-09-01 22:13:58 UTC (rev 205323)
@@ -1,3 +1,11 @@
+2016-09-01  Michael Catanzaro  <[email protected]>
+
+        Fix ENABLE(CSS_GRID_LAYOUT) guards harder after r205102/r205292
+
+        Unreviewed. Silence unused function warning.
+
+        * css/CSSComputedStyleDeclaration.cpp:
+
 2016-09-01  Alex Christensen  <[email protected]>
 
         Avoid unneeded string copy when parsing URL hosts

Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (205322 => 205323)


--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2016-09-01 22:11:01 UTC (rev 205322)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp	2016-09-01 22:13:58 UTC (rev 205323)
@@ -2286,6 +2286,7 @@
     return &element;
 }
 
+#if ENABLE(CSS_GRID_LAYOUT)
 static StyleSelfAlignmentData resolveLegacyJustifyItems(const StyleSelfAlignmentData& data)
 {
     if (data.positionType() == LegacyPosition)
@@ -2293,7 +2294,6 @@
     return data;
 }
 
-#if ENABLE(CSS_GRID_LAYOUT)
 static StyleSelfAlignmentData resolveJustifyItemsAuto(const StyleSelfAlignmentData& data, Node* parent)
 {
     if (data.position() != ItemPositionAuto)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to