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

Unified Diff: Source/core/accessibility/AXRenderObject.cpp

Issue 648913002: Clean up vestiges of ScrollView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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
« no previous file with comments | « LayoutTests/rubberbanding/overhang-w.html ('k') | Source/core/accessibility/AXScrollView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXRenderObject.cpp
diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp
index 7ebc8c92d5a745f3bb463ff1ba0dddefff1db25e..1938cf36ad207ad443d18c44efa51ef054d0bae3 100644
--- a/Source/core/accessibility/AXRenderObject.cpp
+++ b/Source/core/accessibility/AXRenderObject.cpp
@@ -239,7 +239,7 @@ bool AXRenderObject::shouldNotifyActiveDescendant() const
ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const
{
- // If the parent is a scroll view, then this object isn't really scrollable, the parent ScrollView should handle the scrolling.
+ // If the parent is a FrameView, then this object isn't really scrollable; the parent should handle the scrolling.
if (parentObject() && parentObject()->isAXScrollView())
return 0;
« no previous file with comments | « LayoutTests/rubberbanding/overhang-w.html ('k') | Source/core/accessibility/AXScrollView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698