Title: [152347] trunk/Source/WebCore
Revision
152347
Author
[email protected]
Date
2013-07-03 03:06:14 -0700 (Wed, 03 Jul 2013)

Log Message

Further build fixing for build configurations that disable CSS regions support.

* dom/PseudoElement.h: Wrap shouldMoveToFlowThread override into the ENABLE(CSS_REGIONS) build guard.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152346 => 152347)


--- trunk/Source/WebCore/ChangeLog	2013-07-03 10:00:59 UTC (rev 152346)
+++ trunk/Source/WebCore/ChangeLog	2013-07-03 10:06:14 UTC (rev 152347)
@@ -1,5 +1,11 @@
 2013-07-03  Zan Dobersek  <[email protected]>
 
+        Further build fixing for build configurations that disable CSS regions support.
+
+        * dom/PseudoElement.h: Wrap shouldMoveToFlowThread override into the ENABLE(CSS_REGIONS) build guard.
+
+2013-07-03  Zan Dobersek  <[email protected]>
+
         Unreviewed build fix after r152320 and r152345 for build configurations that enable
         SVG support but disable CSS regions support.
 

Modified: trunk/Source/WebCore/dom/PseudoElement.h (152346 => 152347)


--- trunk/Source/WebCore/dom/PseudoElement.h	2013-07-03 10:00:59 UTC (rev 152346)
+++ trunk/Source/WebCore/dom/PseudoElement.h	2013-07-03 10:06:14 UTC (rev 152347)
@@ -48,7 +48,9 @@
 
     // As per http://dev.w3.org/csswg/css3-regions/#flow-into, pseudo-elements such as ::first-line, ::first-letter, ::before or ::after
     // cannot be directly collected into a named flow.
+#if ENABLE(CSS_REGIONS)
     virtual bool shouldMoveToFlowThread(RenderStyle*) const OVERRIDE { return false; }
+#endif
 
     virtual bool canStartSelection() const OVERRIDE { return false; }
     virtual bool canContainRangeEndPoint() const OVERRIDE { return false; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to