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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2657183002: Use full mapLocalToAncestor machinery in ScrollingCoordinator. (Closed)
Patch Set: test expectations 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/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 530e1224f1a96424eb13c66f5798ccacf1afc45d..4461452c8d97f31c5d0a97690599655094ba2295 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -2591,7 +2591,8 @@ IntRect FrameView::scrollableAreaBoundingBox() const {
if (ownerLayoutItem.isNull())
return frameRect();
- return ownerLayoutItem.absoluteContentQuad().enclosingBoundingBox();
+ return ownerLayoutItem.absoluteContentQuad(TraverseDocumentBoundaries)
chrishtr 2017/01/27 20:33:30 It seems you need to update the definition in Scro
szager1 2017/01/30 18:25:41 Done.
+ .enclosingBoundingBox();
}
bool FrameView::isScrollable() {

Powered by Google App Engine
This is Rietveld 408576698