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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.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/modules/accessibility/AXLayoutObject.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
index ee1316fe1eb25b8dc2a7df9e0b02eb743f56fce7..6459cd9fcbfc63e057fbaf56dffd38da52028534 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
@@ -379,7 +379,7 @@ bool AXLayoutObject::isLoaded() const {
bool AXLayoutObject::isOffScreen() const {
ASSERT(m_layoutObject);
IntRect contentRect =
- pixelSnappedIntRect(m_layoutObject->absoluteClippedOverflowRect());
+ pixelSnappedIntRect(m_layoutObject->absoluteVisualRect());
FrameView* view = m_layoutObject->frame()->view();
IntRect viewRect = view->visibleContentRect();
viewRect.intersect(contentRect);

Powered by Google App Engine
This is Rietveld 408576698