Changeset 157828 in webkit for trunk/Source/WebCore/rendering/RenderDeprecatedFlexibleBox.cpp
- Timestamp:
- Oct 22, 2013, 4:59:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderDeprecatedFlexibleBox.cpp
r157810 r157828 479 479 for (RenderBox* child = iterator.first(); child; child = iterator.next()) { 480 480 if (child->isOutOfFlowPositioned()) { 481 child->containingBlock()->insertPositionedObject( child);481 child->containingBlock()->insertPositionedObject(*child); 482 482 RenderLayer* childLayer = child->layer(); 483 483 childLayer->setStaticInlinePosition(xPos); // FIXME: Not right for regions. … … 726 726 727 727 if (child->isOutOfFlowPositioned()) { 728 child->containingBlock()->insertPositionedObject( child);728 child->containingBlock()->insertPositionedObject(*child); 729 729 RenderLayer* childLayer = child->layer(); 730 730 childLayer->setStaticInlinePosition(borderStart() + paddingStart()); // FIXME: Not right for regions.
Note:
See TracChangeset
for help on using the changeset viewer.