Title: [200633] trunk/Source/WebCore
Revision
200633
Author
[email protected]
Date
2016-05-10 12:08:27 -0700 (Tue, 10 May 2016)

Log Message

Fix the !ENABLE(CSS_REGIONS) build after r198990
https://bugs.webkit.org/show_bug.cgi?id=157516

Reviewed by Ryosuke Niwa.

* style/StyleTreeResolver.cpp:
(WebCore::Style::affectsRenderedSubtree):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200632 => 200633)


--- trunk/Source/WebCore/ChangeLog	2016-05-10 18:56:33 UTC (rev 200632)
+++ trunk/Source/WebCore/ChangeLog	2016-05-10 19:08:27 UTC (rev 200633)
@@ -1,3 +1,13 @@
+2016-05-10  Csaba Osztrogonác  <[email protected]>
+
+        Fix the !ENABLE(CSS_REGIONS) build after r198990
+        https://bugs.webkit.org/show_bug.cgi?id=157516
+
+        Reviewed by Ryosuke Niwa.
+
+        * style/StyleTreeResolver.cpp:
+        (WebCore::Style::affectsRenderedSubtree):
+
 2016-05-05  Jer Noble  <[email protected]>
 
         Return a Promise from HTMLMediaElement.play()

Modified: trunk/Source/WebCore/style/StyleTreeResolver.cpp (200632 => 200633)


--- trunk/Source/WebCore/style/StyleTreeResolver.cpp	2016-05-10 18:56:33 UTC (rev 200632)
+++ trunk/Source/WebCore/style/StyleTreeResolver.cpp	2016-05-10 19:08:27 UTC (rev 200633)
@@ -176,8 +176,10 @@
         return true;
     if (element.rendererIsNeeded(newStyle))
         return true;
+#if ENABLE(CSS_REGIONS)
     if (element.shouldMoveToFlowThread(newStyle))
         return true;
+#endif
     return false;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to