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

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

Issue 2577893004: position:fixed content is not offset by relative positioned ancestors (Closed)
Patch Set: position:fixed content is not offset by relative positioned ancestors Created 4 years 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/platform/android/paint/invalidation/fixed-margin-change-repaint-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/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index dd6a22bdd6c9d4ee55543229f423edab9d1a2331..fb3c6cb78c8784e627960e94620930bb96a59171 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -4170,6 +4170,8 @@ void LayoutBox::computeBlockStaticDistance(
continue;
const LayoutBox& box = *toLayoutBox(curr);
staticLogicalTop += box.logicalTop();
+ if (box.isInFlowPositioned())
+ staticLogicalTop += box.offsetForInFlowPosition().height();
if (!box.isLayoutFlowThread())
continue;
// We're walking out of a flowthread here. This flow thread is not in the
« no previous file with comments | « third_party/WebKit/LayoutTests/platform/android/paint/invalidation/fixed-margin-change-repaint-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698