Home | History | Annotate | Download | only in rendering

Lines Matching refs:yDelta

1280     int yDelta = currentMousePosition.y() - sourcePoint.y();
1284 if (abs(yDelta) <= ScrollView::noPanScrollRadius)
1285 yDelta = 0;
1287 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1290 void RenderLayer::scrollByRecursively(int xDelta, int yDelta)
1292 if (!xDelta && !yDelta)
1301 int newOffsetY = scrollYOffset() + yDelta;
1324 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));