Searched defs:currentScrollPosition (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp304 IntPoint currentScrollPosition = scrollPosition(); local
308 if (currentScrollPosition.x() < minScrollPosition.x())
309 stretch.setWidth(currentScrollPosition.x() - minScrollPosition.x());
310 if (currentScrollPosition.x() > maxScrollPosition.x())
311 stretch.setWidth(currentScrollPosition.x() - maxScrollPosition.x());
313 if (currentScrollPosition.y() < minScrollPosition.y())
314 stretch.setHeight(currentScrollPosition.y() - minScrollPosition.y());
315 if (currentScrollPosition.y() > maxScrollPosition.y())
316 stretch.setHeight(currentScrollPosition.y() - maxScrollPosition.y());

Completed in 993 milliseconds