Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/
DScrollView.cpp480 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in overhangAmount() local
481 if (physicalScrollY < 0) in overhangAmount()
482 stretch.setHeight(physicalScrollY); in overhangAmount()
483 else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) in overhangAmount()
484 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height())); in overhangAmount()
1105 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in wheelEvent() local
1106 if (physicalScrollY < 0) { in wheelEvent()
1108 horizontalOverhangRect.setHeight(-physicalScrollY); in wheelEvent()
1109 } else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) { in wheelEvent()
1110 int height = physicalScrollY - (contentsHeight() - visibleContentRect().height()); in wheelEvent()