Home | History | Annotate | Download | only in page

Lines Matching full:delta

115 static inline void scrollAndAcceptEvent(float delta, ScrollDirection positiveDirection, ScrollDirection negativeDirection, PlatformWheelEvent& e, Node* node, Node** stopNode)
117 if (!delta)
124 if (enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPage, 1, stopNode))
129 float pixelsToScroll = delta > 0 ? delta : -delta;
130 if (enclosingBox->scroll(delta < 0 ? negativeDirection : positiveDirection, ScrollByPixel, pixelsToScroll, stopNode))
2201 IntSize delta = dragLocation - m_mouseDownPos;
2211 return abs(delta.width()) >= threshold || abs(delta.height()) >= threshold;
2334 IntSize delta = m_mouseDownPos - roundedIntPoint(absPos);
2335 dragState().m_dragClipboard->setDragImageElement(dragState().m_dragSrc.get(), IntPoint() + delta);