Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/
DScrollView.cpp486 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in overhangAmount() local
487 if (physicalScrollX < 0) in overhangAmount()
488 stretch.setWidth(physicalScrollX); in overhangAmount()
489 else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) in overhangAmount()
490 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width())); in overhangAmount()
1116 int physicalScrollX = scrollPosition().x() + m_scrollOrigin.x(); in wheelEvent() local
1117 if (physicalScrollX < 0) { in wheelEvent()
1118 verticalOverhangRect.setWidth(-physicalScrollX); in wheelEvent()
1125 } else if (physicalScrollX > contentsWidth() - visibleContentRect().width()) { in wheelEvent()
1126 int width = physicalScrollX - (contentsWidth() - visibleContentRect().width()); in wheelEvent()