Home
last modified time | relevance | path

Searched refs:currentScrollPosition (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollView.cpp310 IntPoint currentScrollPosition = scrollPosition(); in overhangAmount() local
314 if (currentScrollPosition.x() < minScrollPosition.x()) in overhangAmount()
315 stretch.setWidth(currentScrollPosition.x() - minScrollPosition.x()); in overhangAmount()
316 if (currentScrollPosition.x() > maxScrollPosition.x()) in overhangAmount()
317 stretch.setWidth(currentScrollPosition.x() - maxScrollPosition.x()); in overhangAmount()
319 if (currentScrollPosition.y() < minScrollPosition.y()) in overhangAmount()
320 stretch.setHeight(currentScrollPosition.y() - minScrollPosition.y()); in overhangAmount()
321 if (currentScrollPosition.y() > maxScrollPosition.y()) in overhangAmount()
322 stretch.setHeight(currentScrollPosition.y() - maxScrollPosition.y()); in overhangAmount()