Index: third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
index 584ed5dfc66ee44174d3dd61b97ce32c38fc17c5..bb2e639bcd3d00e0af940fb5b860ab0199f60259 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
@@ -1387,8 +1387,8 @@ void LayoutBlockFlow::computeInlinePreferredLogicalWidths(LayoutUnit& minLogical |
if (child->isFloating()) { |
const ComputedStyle& childStyle = child->styleRef(); |
clearPreviousFloat = (prevFloat |
- && ((prevFloat->styleRef().floating() == LeftFloat && (childStyle.clear() & ClearLeft)) |
- || (prevFloat->styleRef().floating() == RightFloat && (childStyle.clear() & ClearRight)))); |
+ && ((prevFloat->styleRef().floating() == EFloat::LeftFloat && (childStyle.clear() & ClearLeft)) |
+ || (prevFloat->styleRef().floating() == EFloat::RightFloat && (childStyle.clear() & ClearRight)))); |
prevFloat = child; |
} else { |
clearPreviousFloat = false; |