scroll 3762 Source/core/dom/Document.cpp RefPtrWillBeRawPtr<Event> scrollEvent = target->isDocumentNode() ? Event::createBubble(EventTypeNames::scroll) : Event::create(EventTypeNames::scroll); scroll 3833 Source/core/dom/Document.cpp } else if (eventType == EventTypeNames::scroll) { scroll 492 Source/core/dom/Element.cpp toRenderBox(renderer())->scroll(direction, granularity, units); scroll 87 Source/core/dom/GlobalEventHandlers.h DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(scroll); scroll 89 Source/core/events/EventPath.cpp || eventType == EventTypeNames::scroll scroll 238 Source/core/frame/DOMWindow.h void scroll(int x, int y, const Dictionary& scrollOptions, ExceptionState& exceptionState) const { scrollTo(x, y, scrollOptions, exceptionState); } scroll 1432 Source/core/frame/FrameView.cpp hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); scroll 1490 Source/core/frame/FrameView.cpp hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); scroll 142 Source/core/html/HTMLBodyElement.cpp document().setWindowAttributeEventListener(EventTypeNames::scroll, createAttributeEventListener(document().frame(), name, value)); scroll 43 Source/core/html/HTMLBodyElement.h DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); scroll 271 Source/core/html/HTMLElement.cpp attributeNameToEventNameMap.set(onscrollAttr.localName(), EventTypeNames::scroll); scroll 139 Source/core/html/HTMLFrameSetElement.cpp document().setWindowAttributeEventListener(EventTypeNames::scroll, createAttributeEventListener(document().frame(), name, value)); scroll 55 Source/core/html/HTMLFrameSetElement.h DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); scroll 191 Source/core/html/track/vtt/VTTRegion.cpp setScroll(region->scroll(), ASSERT_NO_EXCEPTION); scroll 81 Source/core/html/track/vtt/VTTRegion.h const AtomicString scroll() const; scroll 132 Source/core/loader/EmptyClients.h virtual void scroll(const IntSize&, const IntRect&, const IntRect&) OVERRIDE { } scroll 79 Source/core/page/Chrome.cpp m_client->scroll(scrollDelta, rectToScroll, clipRect); scroll 66 Source/core/page/Chrome.h virtual void scroll(const IntSize&, const IntRect&, const IntRect&) OVERRIDE; scroll 147 Source/core/page/ChromeClient.h virtual void scroll(const IntSize&, const IntRect&, const IntRect&) = 0; scroll 971 Source/core/page/EventHandler.cpp bool didScroll = curBox->scroll(physicalDirection, granularity, delta); scroll 992 Source/core/page/EventHandler.cpp if (scroll(direction, granularity, startingNode)) scroll 996 Source/core/page/EventHandler.cpp if (view && view->scroll(direction, granularity)) scroll 2232 Source/core/page/EventHandler.cpp if (scroll(ScrollRight, granularity, startNode, &stopNode, wheelEvent->deltaX(), roundedIntPoint(wheelEvent->absoluteLocation()))) scroll 2235 Source/core/page/EventHandler.cpp if (scroll(ScrollDown, granularity, startNode, &stopNode, wheelEvent->deltaY(), roundedIntPoint(wheelEvent->absoluteLocation()))) scroll 2634 Source/core/page/EventHandler.cpp bool horizontalScroll = scroll(ScrollLeft, granularity, node, &stopNode, delta.width()); scroll 2635 Source/core/page/EventHandler.cpp bool verticalScroll = scroll(ScrollUp, granularity, node, &stopNode, delta.height()); scroll 3433 Source/core/page/EventHandler.cpp if (scroll(direction, ScrollByPage)) { scroll 3442 Source/core/page/EventHandler.cpp if (view->scroll(direction, ScrollByPage)) scroll 243 Source/core/page/EventHandler.h bool scroll(ScrollDirection, ScrollGranularity, Node* startNode = 0, Node** stopNode = 0, float delta = 1.0f, IntPoint absolutePoint = IntPoint()); scroll 721 Source/core/rendering/RenderBox.cpp return layer()->scrollableArea()->scroll(direction, granularity, delta); scroll 474 Source/core/rendering/RenderBox.h virtual bool scroll(ScrollDirection, ScrollGranularity, float delta = 1); scroll 70 Source/core/rendering/RenderEmbeddedObject.h virtual bool scroll(ScrollDirection, ScrollGranularity, float multiplier) OVERRIDE FINAL; scroll 631 Source/core/rendering/RenderListBox.cpp return ScrollableArea::scroll(direction, granularity, multiplier); scroll 77 Source/core/rendering/RenderListBox.h virtual bool scroll(ScrollDirection, ScrollGranularity, float) OVERRIDE; scroll 64 Source/core/svg/SVGDocument.cpp event->initEvent(EventTypeNames::scroll, true, false); scroll 77 Source/core/svg/SVGElementInstance.cpp DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), scroll); scroll 139 Source/core/svg/SVGElementInstance.h DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), scroll); scroll 254 Source/core/svg/SVGSVGElement.cpp document().setWindowAttributeEventListener(EventTypeNames::scroll, createAttributeEventListener(document().frame(), name, value)); scroll 53 Source/platform/HostWindow.h virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0; scroll 88 Source/platform/mac/ScrollAnimatorMac.h virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float delta) OVERRIDE; scroll 108 Source/platform/scroll/ScrollAnimator.cpp scroll(VerticalScrollbar, granularity, m_scrollableArea->pixelStep(VerticalScrollbar), -deltaY); scroll 119 Source/platform/scroll/ScrollAnimator.cpp scroll(HorizontalScrollbar, granularity, m_scrollableArea->pixelStep(HorizontalScrollbar), -deltaX); scroll 59 Source/platform/scroll/ScrollAnimator.h virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float delta); scroll 401 Source/platform/scroll/ScrollAnimatorNone.cpp return ScrollAnimator::scroll(orientation, granularity, step, delta); scroll 416 Source/platform/scroll/ScrollAnimatorNone.cpp return ScrollAnimator::scroll(orientation, granularity, step, delta); scroll 421 Source/platform/scroll/ScrollAnimatorNone.cpp return ScrollAnimator::scroll(orientation, granularity, step, delta); scroll 51 Source/platform/scroll/ScrollAnimatorNone.h virtual bool scroll(ScrollbarOrientation, ScrollGranularity, float step, float delta) OVERRIDE; scroll 298 Source/platform/scroll/ScrollView.cpp return ScrollableArea::scroll(physicalDirection, granularity); scroll 563 Source/platform/scroll/ScrollView.cpp hostWindow()->scroll(scrollDelta, rectToScroll, clipRect); scroll 164 Source/platform/scroll/ScrollView.h bool scroll(ScrollDirection, ScrollGranularity); scroll 143 Source/platform/scroll/ScrollableArea.cpp return scrollAnimator()->scroll(orientation, granularity, step, delta); scroll 62 Source/platform/scroll/ScrollableArea.h bool scroll(ScrollDirection, ScrollGranularity, float delta = 1); scroll 224 Source/platform/scroll/Scrollbar.cpp if (m_scrollableArea && m_scrollableArea->scroll(pressedPartScrollDirection(), pressedPartScrollGranularity())) scroll 376 Source/platform/scroll/Scrollbar.cpp && m_scrollableArea->scroll(pressedPartScrollDirection(), pressedPartScrollGranularity())) { scroll 122 Source/web/ChromeClientImpl.h virtual void scroll( scroll 405 Source/web/WebPluginContainerImpl.cpp parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect); scroll 839 Source/web/WebPluginContainerImpl.cpp return scrollbarGroup->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPrecisePixel, absDelta); scroll 235 Source/web/WebPluginScrollbarImpl.cpp m_group->scroll(dir, static_cast<WebCore::ScrollGranularity>(granularity), multiplier); scroll 369 Source/web/WebPluginScrollbarImpl.cpp return m_group->scroll(scrollDirection, scrollGranularity); scroll 81 Source/web/WebPluginScrollbarImpl.h virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier) OVERRIDE; scroll 124 Source/web/WebPopupMenuImpl.h virtual void scroll( scroll 1066 Source/web/WebViewImpl.cpp void WebViewImpl::computeScaleAndScrollForBlockRect(const WebPoint& hitPoint, const WebRect& blockRect, float padding, float defaultScaleWhenAlreadyLegible, float& scale, WebPoint& scroll) scroll 1069 Source/web/WebViewImpl.cpp scroll.x = scroll.y = 0; scroll 1118 Source/web/WebViewImpl.cpp scroll.x = rect.x; scroll 1119 Source/web/WebViewImpl.cpp scroll.y = rect.y; scroll 1122 Source/web/WebViewImpl.cpp scroll = mainFrameImpl()->frameView()->windowToContents(scroll); scroll 1123 Source/web/WebViewImpl.cpp scroll = clampOffsetAtScale(scroll, scale); scroll 1218 Source/web/WebViewImpl.cpp WebPoint scroll; scroll 1220 Source/web/WebViewImpl.cpp computeScaleAndScrollForBlockRect(point, blockBounds, touchPointPadding, minimumPageScaleFactor() * doubleTapZoomAlreadyLegibleRatio, scale, scroll); scroll 1235 Source/web/WebViewImpl.cpp isAnimating = startPageScaleAnimation(scroll, false, scale, doubleTapZoomAnimationDurationInSeconds); scroll 1258 Source/web/WebViewImpl.cpp WebPoint scroll; scroll 1260 Source/web/WebViewImpl.cpp computeScaleAndScrollForBlockRect(WebPoint(rect.x, rect.y), blockBounds, nonUserInitiatedPointPadding, minimumPageScaleFactor(), scale, scroll); scroll 1262 Source/web/WebViewImpl.cpp startPageScaleAnimation(scroll, false, scale, findInPageAnimationDurationInSeconds); scroll 1271 Source/web/WebViewImpl.cpp WebPoint scroll; scroll 1273 Source/web/WebViewImpl.cpp computeScaleAndScrollForBlockRect(WebPoint(rect.x, rect.y), rect, nonUserInitiatedPointPadding, minimumPageScaleFactor(), scale, scroll); scroll 1278 Source/web/WebViewImpl.cpp startPageScaleAnimation(scroll, false, scale, multipleTargetsZoomAnimationDurationInSeconds); scroll 2498 Source/web/WebViewImpl.cpp IntPoint scroll; scroll 2500 Source/web/WebViewImpl.cpp computeScaleAndScrollForFocusedNode(element, scale, scroll, needAnimation); scroll 2502 Source/web/WebViewImpl.cpp startPageScaleAnimation(scroll, false, scale, scrollAndScaleAnimationDurationInSeconds); scroll 472 Source/web/WebViewImpl.h void computeScaleAndScrollForBlockRect(const WebPoint& hitPoint, const WebRect& blockRect, float padding, float defaultScaleWhenAlreadyLegible, float& scale, WebPoint& scroll); scroll 476 Source/web/WebViewImpl.h void computeScaleAndScrollForFocusedNode(WebCore::Node* focusedNode, float& scale, WebCore::IntPoint& scroll, bool& needAnimation); scroll 123 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByLine, 100, 1); scroll 129 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByPage, 100, 1); scroll 135 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByPixel, 4, 25); scroll 141 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByPrecisePixel, 4, 25); scroll 157 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByLine, 100, 1); scroll 162 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByPage, 100, 1); scroll 167 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByDocument, 100, 1); scroll 172 Source/web/tests/ScrollAnimatorNoneTest.cpp scrollAnimatorNone.scroll(HorizontalScrollbar, ScrollByPixel, 100, 1); scroll 2218 Source/web/tests/WebFrameTest.cpp void setScaleAndScrollAndLayout(blink::WebView* webView, WebPoint scroll, float scale) scroll 2220 Source/web/tests/WebFrameTest.cpp webView->setPageScaleFactor(scale, WebPoint(scroll.x, scroll.y)); scroll 2247 Source/web/tests/WebFrameTest.cpp WebPoint scroll; scroll 2253 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointWide.x, doubleTapPointWide.y), wideBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); scroll 2257 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(wideDiv.x, scroll.x, 20); scroll 2258 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(0, scroll.y); scroll 2260 Source/web/tests/WebFrameTest.cpp setScaleAndScrollAndLayout(webViewHelper.webViewImpl(), scroll, scale); scroll 2264 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointWide.x, doubleTapPointWide.y), wideBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); scroll 2271 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(doubleTapPointTall.x, doubleTapPointTall.y), tallBlockBounds, touchPointPadding, doubleTapZoomAlreadyLegibleScale, scale, scroll); scroll 2274 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(tallDiv.x, scroll.x, 20); scroll 2275 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(tallDiv.y, scroll.y, 20); scroll 2279 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(WebPoint(250, 250), webViewHelper.webViewImpl()->computeBlockBounds(WebRect(250, 250, 10, 10), true), 0, doubleTapZoomAlreadyLegibleScale, scale, scroll); scroll 2356 Source/web/tests/WebFrameTest.cpp WebPoint scroll; scroll 2359 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForBlockRect(point, blockBounds, 0, 1.0f, scale, scroll); scroll 2361 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(scroll.y, 2660); scroll 2619 Source/web/tests/WebFrameTest.cpp WebCore::IntPoint scroll; scroll 2621 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForFocusedNode(webViewHelper.webViewImpl()->focusedElement(), scale, scroll, needAnimation); scroll 2625 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); scroll 2627 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(vScroll, scroll.y(), 1); scroll 2636 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForFocusedNode(webViewHelper.webViewImpl()->focusedElement(), scale, scroll, needAnimation); scroll 2640 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); scroll 2647 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForFocusedNode(webViewHelper.webViewImpl()->focusedElement(), scale, scroll, needAnimation); scroll 2651 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(hScroll, scroll.x(), 1); scroll 2653 Source/web/tests/WebFrameTest.cpp EXPECT_NEAR(vScroll, scroll.y(), 1); scroll 2656 Source/web/tests/WebFrameTest.cpp setScaleAndScrollAndLayout(webViewHelper.webViewImpl(), scroll, scale); scroll 2660 Source/web/tests/WebFrameTest.cpp webViewHelper.webViewImpl()->computeScaleAndScrollForFocusedNode(webViewHelper.webViewImpl()->focusedElement(), scale, scroll, needAnimation); scroll 65 public/web/WebPluginScrollbar.h virtual void scroll(ScrollDirection, ScrollGranularity, float multiplier) = 0;