summaryrefslogtreecommitdiff
path: root/Source/WebCore/accessibility/AccessibilityRenderObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/accessibility/AccessibilityRenderObject.cpp')
-rw-r--r--Source/WebCore/accessibility/AccessibilityRenderObject.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/WebCore/accessibility/AccessibilityRenderObject.cpp b/Source/WebCore/accessibility/AccessibilityRenderObject.cpp
index 942f200e2..dc0d33b93 100644
--- a/Source/WebCore/accessibility/AccessibilityRenderObject.cpp
+++ b/Source/WebCore/accessibility/AccessibilityRenderObject.cpp
@@ -3937,4 +3937,33 @@ AccessibilityRole AccessibilityRenderObject::roleValueForMSAA() const
return m_roleForMSAA;
}
+ScrollableArea* AccessibilityRenderObject::getScrollableAreaIfScrollable() const
+{
+ // If the parent is a scroll view, then this object isn't really scrollable, the parent ScrollView should handle the scrolling.
+ if (parentObject() && parentObject()->isAccessibilityScrollView())
+ return 0;
+
+ if (!m_renderer || !m_renderer->isBox())
+ return 0;
+
+ RenderBox* box = toRenderBox(m_renderer);
+ if (!box->canBeScrolledAndHasScrollableArea())
+ return 0;
+
+ return box->layer();
+}
+
+void AccessibilityRenderObject::scrollTo(const IntPoint& point) const
+{
+ if (!m_renderer || !m_renderer->isBox())
+ return;
+
+ RenderBox* box = toRenderBox(m_renderer);
+ if (!box->canBeScrolledAndHasScrollableArea())
+ return;
+
+ RenderLayer* layer = box->layer();
+ layer->scrollToOffset(point.x(), point.y(), RenderLayer::ScrollOffsetClamped);
+}
+
} // namespace WebCore