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

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

Issue 2657183002: Use full mapLocalToAncestor machinery in ScrollingCoordinator. (Closed)
Patch Set: Delete unused test file 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 1267adb057141c2533062ab02a2a0faa9dd91a9c..5da4872eb103abb7749faa4eaa3bf5719b998f62 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -2588,7 +2588,8 @@ IntRect FrameView::scrollableAreaBoundingBox() const {
if (ownerLayoutItem.isNull())
return frameRect();
- return ownerLayoutItem.absoluteContentQuad().enclosingBoundingBox();
+ return ownerLayoutItem.absoluteContentQuad(TraverseDocumentBoundaries)
+ .enclosingBoundingBox();
}
bool FrameView::isScrollable() {

Powered by Google App Engine
This is Rietveld 408576698