Home | History | Annotate | Download | only in web

Lines Matching refs:scrollOffset

1117     IntSize scrollOffset;
1119 scrollOffset = mainFrame()->scrollOffset();
1123 const int absoluteSourceX = source.x + scrollOffset.width();
1139 ASSERT(scrollOffset.width() + newX + newWidth <= maxSize.width);
2828 textboxRectInDocumentCoordinates.move(mainFrame()->scrollOffset());
2830 caretInDocumentCoordinates.move(mainFrame()->scrollOffset());
3038 IntPoint scrollOffset(mainFrame()->scrollOffset().width, mainFrame()->scrollOffset().height);
3039 setPageScaleFactor(scaleFactor, scrollOffset);
4256 WebSize webScrollOffset = mainFrame()->scrollOffset();
4257 IntPoint scrollOffset(webScrollOffset.width + scrollDelta.width, webScrollOffset.height + scrollDelta.height);
4258 updateMainFrameScrollPosition(scrollOffset, false);
4262 WebSize scrollOffset = mainFrame()->scrollOffset();
4263 scrollOffset.width += scrollDelta.width;
4264 scrollOffset.height += scrollDelta.height;
4266 WebPoint scrollPoint(scrollOffset.width, scrollOffset.height);