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

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
Index: Source/core/accessibility/AXRenderObject.cpp
diff --git a/Source/core/accessibility/AXRenderObject.cpp b/Source/core/accessibility/AXRenderObject.cpp
index 7ebc8c92d5a745f3bb463ff1ba0dddefff1db25e..4b22930a3f44623b784c9b250fc91707c415fa62 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 scroll view, then this object isn't really scrollable, the parent FrameView should handle the scrolling.
Ian Vollick 2014/10/11 03:05:32 Does "scroll view" also need to be updated?
skobes 2014/10/11 04:05:19 Done.
if (parentObject() && parentObject()->isAXScrollView())
return 0;

Powered by Google App Engine
This is Rietveld 408576698