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; |