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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp

Issue 2454693003: adjustedPositionRelativeTo() couldn't find offsetParent. (Closed)
Patch Set: Created 4 years, 2 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 | « third_party/WebKit/LayoutTests/fast/inline/inline-offsetLeft-continuation-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
index 653dffb1188e470df8c63354f5ee628f2b27cf94..28edd658b75c676e4818376b61b72510339785c5 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp
@@ -1016,7 +1016,8 @@ LayoutPoint LayoutBoxModelObject::adjustedPositionRelativeTo(
// This is why we have to do a nullptr check here.
// offset(Left|Top) is generally broken when offsetParent is inline.
for (const LayoutObject* current = container();
- current && current != offsetParent; current = current->container()) {
+ current && current->node() != element;
Gleb Lanbin 2016/10/31 22:29:53 I'm not very familiar with this code. I would sugg
Karl Øygard 2016/11/02 12:48:01 Agreed, I've updated the comment with another prob
+ current = current->container()) {
// FIXME: What are we supposed to do inside SVG content?
referencePoint.move(current->columnOffset(referencePoint));
if (current->isBox() && !current->isTableRow())
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/inline/inline-offsetLeft-continuation-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698