Home | History | Annotate | Download | only in page

Lines Matching refs:stopNode

887 bool EventHandler::scroll(ScrollDirection direction, ScrollGranularity granularity, Node* startNode, Node** stopNode, float delta, IntPoint absolutePoint)
908 // If we're at the stopNode, we should try to scroll it but we shouldn't bubble past it
909 bool shouldStopBubbling = stopNode && *stopNode && curBox->node() == *stopNode;
912 if (didScroll && stopNode)
913 *stopNode = curBox->node();
2026 Node* stopNode = m_previousWheelScrolledNode.get();
2031 if (scroll(ScrollRight, granularity, startNode, &stopNode, wheelEvent->deltaX(), roundedIntPoint(wheelEvent->absoluteLocation())))
2034 if (scroll(ScrollDown, granularity, startNode, &stopNode, wheelEvent->deltaY(), roundedIntPoint(wheelEvent->absoluteLocation())))
2038 m_previousWheelScrolledNode = stopNode;
2444 Node* stopNode = 0;
2456 stopNode = m_previousGestureScrolledNode.get();
2460 bool horizontalScroll = scroll(ScrollLeft, granularity, node, &stopNode, delta.width());
2461 bool verticalScroll = scroll(ScrollUp, granularity, node, &stopNode, delta.height());
2464 m_previousGestureScrolledNode = stopNode;