Index: Source/core/rendering/shapes/ShapeOutsideInfo.cpp |
diff --git a/Source/core/rendering/shapes/ShapeOutsideInfo.cpp b/Source/core/rendering/shapes/ShapeOutsideInfo.cpp |
index 5888fe8351d201267f1345c92c8e204a092e538c..4993a5fe2ba7af746796cf42a28cef79e06fc480 100644 |
--- a/Source/core/rendering/shapes/ShapeOutsideInfo.cpp |
+++ b/Source/core/rendering/shapes/ShapeOutsideInfo.cpp |
@@ -36,7 +36,7 @@ namespace WebCore { |
bool ShapeOutsideInfo::isEnabledFor(const RenderBox* box) |
{ |
ShapeValue* shapeValue = box->style()->shapeOutside(); |
- if (!box->isFloatingWithShapeOutside() || !shapeValue) |
+ if (!box->isFloating() || !shapeValue) |
return false; |
switch (shapeValue->type()) { |