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()) |