Title: [174493] trunk/Source/WebCore
- Revision
- 174493
- Author
- [email protected]
- Date
- 2014-10-08 18:51:25 -0700 (Wed, 08 Oct 2014)
Log Message
Unreviewed build fix after r174480. Broke iOS build.
* rendering/RenderObject.cpp:
(WebCore::includeNonFixedHeight):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (174492 => 174493)
--- trunk/Source/WebCore/ChangeLog 2014-10-09 01:49:33 UTC (rev 174492)
+++ trunk/Source/WebCore/ChangeLog 2014-10-09 01:51:25 UTC (rev 174493)
@@ -1,3 +1,10 @@
+2014-10-08 Myles C. Maxfield <[email protected]>
+
+ Unreviewed build fix after r174480. Broke iOS build.
+
+ * rendering/RenderObject.cpp:
+ (WebCore::includeNonFixedHeight):
+
2014-10-08 Myles C. Maxfield <[email protected]>
Inline ruby does not get justified correctly
Modified: trunk/Source/WebCore/rendering/RenderObject.cpp (174492 => 174493)
--- trunk/Source/WebCore/rendering/RenderObject.cpp 2014-10-09 01:49:33 UTC (rev 174492)
+++ trunk/Source/WebCore/rendering/RenderObject.cpp 2014-10-09 01:51:25 UTC (rev 174493)
@@ -407,7 +407,7 @@
// For fixed height styles, if the overflow size of the element spills out of the specified
// height, assume we can apply text auto-sizing.
if (style.overflowY() == OVISIBLE
- && style.height().value() < downcast<RenderBlock>(renderer).layoutOverflowRect().maxY())
+ && style.height().value() < downcast<RenderBlock>(renderer)->layoutOverflowRect().maxY())
return RenderObject::OverflowHeight;
}
return RenderObject::FixedHeight;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes