Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/
DScrollView.cpp449 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in overhangAmount() local
450 if (physicalScrollY < 0) in overhangAmount()
451 stretch.setHeight(physicalScrollY); in overhangAmount()
452 else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) in overhangAmount()
453 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height())); in overhangAmount()
1074 int physicalScrollY = scrollPosition().y() + m_scrollOrigin.y(); in wheelEvent() local
1075 if (physicalScrollY < 0) { in wheelEvent()
1077 horizontalOverhangRect.setHeight(-physicalScrollY); in wheelEvent()
1078 } else if (physicalScrollY > contentsHeight() - visibleContentRect().height()) { in wheelEvent()
1079 int height = physicalScrollY - (contentsHeight() - visibleContentRect().height()); in wheelEvent()