Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: Source/core/layout/LayoutBox.cpp

Issue 1198433002: *** NOT FOR LANDING *** mapLocalToContainer and offsetFromContainer cleanup. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: There's also work that LayoutBoxModelObject::offsetFromContainer could do instead of LayoutObject. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayoutBox.h ('k') | Source/core/layout/LayoutBoxModelObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutBox.cpp
diff --git a/Source/core/layout/LayoutBox.cpp b/Source/core/layout/LayoutBox.cpp
index aaf15908b75400b2c123c6183c0c7757ec23d129..026fd703ed84d465992bd41a79cfe1c8f31d9d67 100644
--- a/Source/core/layout/LayoutBox.cpp
+++ b/Source/core/layout/LayoutBox.cpp
@@ -1558,60 +1558,6 @@ LayoutUnit LayoutBox::perpendicularContainingBlockLogicalHeight() const
return cb->adjustContentBoxLogicalHeightForBoxSizing(logicalHeightLength.value());
}
-void LayoutBox::mapLocalToContainer(const LayoutBoxModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed, const PaintInvalidationState* paintInvalidationState) const
-{
- if (paintInvalidationContainer == this)
- return;
-
- if (paintInvalidationState && paintInvalidationState->canMapToContainer(paintInvalidationContainer)) {
- LayoutSize offset = paintInvalidationState->paintOffset() + locationOffset();
- if (style()->hasInFlowPosition() && layer())
- offset += layer()->offsetForInFlowPosition();
- transformState.move(offset);
- return;
- }
-
- bool containerSkipped;
- LayoutObject* o = container(paintInvalidationContainer, &containerSkipped);
- if (!o)
- return;
-
- bool isFixedPos = style()->position() == FixedPosition;
- bool hasTransform = hasLayer() && layer()->transform();
- // If this box has a transform, it acts as a fixed position container for fixed descendants,
- // and may itself also be fixed position. So propagate 'fixed' up only if this box is fixed position.
- if (hasTransform && !isFixedPos)
- mode &= ~IsFixed;
- else if (isFixedPos)
- mode |= IsFixed;
-
- if (wasFixed)
- *wasFixed = mode & IsFixed;
-
- LayoutSize containerOffset = offsetFromContainer(o, roundedLayoutPoint(transformState.mappedPoint()));
-
- bool preserve3D = mode & UseTransforms && (o->style()->preserves3D() || style()->preserves3D());
- if (mode & UseTransforms && shouldUseTransformFromContainer(o)) {
- TransformationMatrix t;
- getTransformFromContainer(o, containerOffset, t);
- transformState.applyTransform(t, preserve3D ? TransformState::AccumulateTransform : TransformState::FlattenTransform);
- } else {
- transformState.move(containerOffset.width(), containerOffset.height(), preserve3D ? TransformState::AccumulateTransform : TransformState::FlattenTransform);
- }
-
- if (containerSkipped) {
- // There can't be a transform between paintInvalidationContainer and o, because transforms create containers, so it should be safe
- // to just subtract the delta between the paintInvalidationContainer and o.
- LayoutSize containerOffset = paintInvalidationContainer->offsetFromAncestorContainer(o);
- transformState.move(-containerOffset.width(), -containerOffset.height(), preserve3D ? TransformState::AccumulateTransform : TransformState::FlattenTransform);
- return;
- }
-
- mode &= ~ApplyContainerFlip;
-
- o->mapLocalToContainer(paintInvalidationContainer, transformState, mode, wasFixed);
-}
-
void LayoutBox::mapAbsoluteToLocalPoint(MapCoordinatesFlags mode, TransformState& transformState) const
{
bool isFixedPos = style()->position() == FixedPosition;
@@ -1627,34 +1573,14 @@ void LayoutBox::mapAbsoluteToLocalPoint(MapCoordinatesFlags mode, TransformState
LayoutBoxModelObject::mapAbsoluteToLocalPoint(mode, transformState);
}
-LayoutSize LayoutBox::offsetFromContainer(const LayoutObject* o, const LayoutPoint& point, bool* offsetDependsOnPoint) const
+LayoutSize LayoutBox::offsetFromContainer(const LayoutObject* o) const
{
- ASSERT(o == container());
-
- LayoutSize offset;
- if (isRelPositioned())
- offset += offsetForInFlowPosition();
-
- if (!isInline() || isReplaced()) {
- offset += topLeftLocationOffset();
- if (o->isLayoutFlowThread()) {
- // So far the point has been in flow thread coordinates (i.e. as if everything in
- // the fragmentation context lived in one tall single column). Convert it to a
- // visual point now.
- LayoutPoint pointInContainer = point + offset;
- offset += o->columnOffset(pointInContainer);
- if (offsetDependsOnPoint)
- *offsetDependsOnPoint = true;
- }
- }
-
- if (o->hasOverflowClip())
- offset -= toLayoutBox(o)->scrolledContentOffset();
+ LayoutSize offset = topLeftLocationOffset();
if (style()->position() == AbsolutePosition && o->isRelPositioned() && o->isLayoutInline())
offset += toLayoutInline(o)->offsetForInFlowPositionedInline(*this);
- return offset;
+ return offset + LayoutBoxModelObject::offsetFromContainer(o);
}
InlineBox* LayoutBox::createInlineBox()
« no previous file with comments | « Source/core/layout/LayoutBox.h ('k') | Source/core/layout/LayoutBoxModelObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698