Home | History | Annotate | Download | only in rendering

Lines Matching defs:yDelta

1128     int yDelta = currentMousePosition.y() - sourcePoint.y();
1132 if (abs(yDelta) <= ScrollView::noPanScrollRadius)
1133 yDelta = 0;
1135 scrollByRecursively(adjustedScrollDelta(xDelta), adjustedScrollDelta(yDelta));
1138 void RenderLayer::scrollByRecursively(int xDelta, int yDelta)
1140 if (!xDelta && !yDelta)
1149 int newOffsetY = scrollYOffset() + yDelta;
1172 renderer()->view()->frameView()->scrollBy(IntSize(xDelta, yDelta));