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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2575423003: Fix geometry mapping issues for float under inline (Closed)
Patch Set: SVG floating Created 3 years, 11 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
Index: third_party/WebKit/Source/core/layout/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index a31c0d884a1881d066c32d7a343f7291e50769d7..fb6aafa584c894814cbe4375af1cc3add1947a71 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -899,15 +899,15 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
//
// This method is extremely similar to containingBlock(), but with a few
// notable exceptions.
- // (1) It can be used on orphaned subtrees, i.e., it can be called safely
- // even when the object is not part of the primary document subtree yet.
- // (2) For normal flow elements, it just returns the parent.
- // (3) For absolute positioned elements, it will return a relative
+ // (1) For normal flow elements, it just returns the parent.
+ // (2) For absolute positioned elements, it will return a relative
// positioned inline. containingBlock() simply skips relpositioned inlines
// and lets an enclosing block handle the layout of the positioned object.
// This does mean that computePositionedLogicalWidth and
// computePositionedLogicalHeight have to use container().
//
+ // Note that floating objects don't belong to either of the above exceptions.
+ //
// This function should be used for any invalidation as it would correctly
// walk the containing block chain. See e.g. markContainerChainForLayout.
// It is also used for correctly sizing absolutely positioned elements
@@ -925,7 +925,10 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
bool* ancestorSkipped = nullptr,
bool* filterSkipped = nullptr) const;
// Finds the containing block as if this object is absolute-position.
- LayoutBlock* containingBlockForAbsolutePosition() const;
+ LayoutBlock* containingBlockForAbsolutePosition(
+ const LayoutBoxModelObject* ancestor = nullptr,
+ bool* ancestorSkipped = nullptr,
+ bool* filterSkipped = nullptr) const;
virtual LayoutObject* hoverAncestor() const { return parent(); }
@@ -1114,7 +1117,9 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
//
// See container() for the function that returns the containing block.
// See LayoutBlock.h for some extra explanations on containing blocks.
- LayoutBlock* containingBlock() const;
+ LayoutBlock* containingBlock(const LayoutBoxModelObject* ancestor = nullptr,
mstensho (USE GERRIT) 2017/01/05 10:31:30 How about a struct that holds these three variable
Xianzhu 2017/01/06 00:42:35 Sounds good. Would like to address this in a follo
+ bool* ancestorSkipped = nullptr,
+ bool* filterSkipped = nullptr) const;
bool canContainAbsolutePositionObjects() const {
return m_style->canContainAbsolutePositionObjects() ||

Powered by Google App Engine
This is Rietveld 408576698