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

Unified Diff: third_party/WebKit/Source/core/page/SpatialNavigation.cpp

Issue 2465983002: Rename "paint invalidation rect" etc. to "visual rect". (Closed)
Patch Set: - Created 4 years, 1 month 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/page/SpatialNavigation.cpp
diff --git a/third_party/WebKit/Source/core/page/SpatialNavigation.cpp b/third_party/WebKit/Source/core/page/SpatialNavigation.cpp
index 8fb5fc2f9b50efaae4e983b2d33736e2764d3df2..ac1288b9afb29669198cf8547664636125f19e28 100644
--- a/third_party/WebKit/Source/core/page/SpatialNavigation.cpp
+++ b/third_party/WebKit/Source/core/page/SpatialNavigation.cpp
@@ -188,7 +188,7 @@ bool hasOffscreenRect(Node* node, WebFocusType type) {
if (!layoutObject)
return true;
- LayoutRect rect(layoutObject->absoluteClippedOverflowRect());
+ LayoutRect rect(layoutObject->absoluteVisualRect());
if (rect.isEmpty())
return true;

Powered by Google App Engine
This is Rietveld 408576698