Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/
DScrollView.cpp455 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in overhangAmount() local
456 if (physicalScrollX < 0) in overhangAmount()
457 stretch.setWidth(physicalScrollX); in overhangAmount()
458 else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) in overhangAmount()
459 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width())); in overhangAmount()
1085 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in wheelEvent() local
1086 if (physicalScrollX < 0) { in wheelEvent()
1087 verticalOverhangRect.setWidth(-physicalScrollX); in wheelEvent()
1094 } else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) { in wheelEvent()
1095 int width = physicalScrollX - (contentsWidth() - visibleContentRect().width()); in wheelEvent()