Title: [151338] trunk/Source/WebCore
Revision
151338
Author
[email protected]
Date
2013-06-07 15:04:59 -0700 (Fri, 07 Jun 2013)

Log Message

[CSS Exclusions][CSS Shapes] Incorrect compile flag in LayoutState.h
https://bugs.webkit.org/show_bug.cgi?id=117318

Reviewed by Alexandru Chiculita.

m_exclusionShapeInsideInfo should be guarded by the CSS_SHAPES flag,
not the CSS_EXCLUSIONS flag.

No tests required.

* rendering/LayoutState.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151337 => 151338)


--- trunk/Source/WebCore/ChangeLog	2013-06-07 21:53:48 UTC (rev 151337)
+++ trunk/Source/WebCore/ChangeLog	2013-06-07 22:04:59 UTC (rev 151338)
@@ -1,3 +1,17 @@
+2013-06-07  Bear Travis  <[email protected]>
+
+        [CSS Exclusions][CSS Shapes] Incorrect compile flag in LayoutState.h
+        https://bugs.webkit.org/show_bug.cgi?id=117318
+
+        Reviewed by Alexandru Chiculita.
+
+        m_exclusionShapeInsideInfo should be guarded by the CSS_SHAPES flag,
+        not the CSS_EXCLUSIONS flag.
+
+        No tests required.
+
+        * rendering/LayoutState.h:
+
 2013-06-07  Christophe Dumez  <[email protected]>
 
         Get rid of outdated raises() from Web IDL

Modified: trunk/Source/WebCore/rendering/LayoutState.h (151337 => 151338)


--- trunk/Source/WebCore/rendering/LayoutState.h	2013-06-07 21:53:48 UTC (rev 151337)
+++ trunk/Source/WebCore/rendering/LayoutState.h	2013-06-07 22:04:59 UTC (rev 151338)
@@ -125,7 +125,7 @@
     // The current line grid that we're snapping to and the offset of the start of the grid.
     RenderBlock* m_lineGrid;
     LayoutState* m_next;
-#if ENABLE(CSS_EXCLUSIONS)
+#if ENABLE(CSS_SHAPES)
     ExclusionShapeInsideInfo* m_exclusionShapeInsideInfo;
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to