Index: Source/WebCore/rendering/RenderBox.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderBox.cpp (revision 140726) |
+++ Source/WebCore/rendering/RenderBox.cpp (working copy) |
@@ -305,12 +305,6 @@ |
#if ENABLE(CSS_EXCLUSIONS) |
updateExclusionShapeOutsideInfoAfterStyleChange(style()->shapeOutside(), oldStyle ? oldStyle->shapeOutside() : 0); |
#endif |
- |
- if (oldStyle && (newStyle->boxSizing() == BORDER_BOX || oldStyle->boxSizing() == BORDER_BOX) |
- && (newStyle->paddingBox() != oldStyle->paddingBox() || newStyle->border() != oldStyle->border())) { |
- for (RenderObject* child = firstChild(); child; child = child->nextSibling()) |
- child->setChildNeedsLayout(true, MarkOnlyThis); |
- } |
} |
#if ENABLE(CSS_EXCLUSIONS) |