Lines Matching defs:touch

1411     // Mouse events simulated from touch should not hit-test again.
1539 // Mouse events simulated from touch should not hit-test again.
2073 // Hit test across all frames and do touch adjustment as necessary for the event type.
2291 // supplied HitTestResult), but that will require some overhaul of the touch drag-and-drop code
2412 // Needed for <option> and <optgroup> elements so we can touch scroll <select>s
2523 // If the touch is over a scrollbar, don't adjust the touch point since touch adjustment only takes into account
2524 // DOM nodes so a touch over a scrollbar will be adjusted towards nearby nodes. This leads to things like textarea
2588 // we don't yet apply hover/active state here because we need to resolve touch adjustment
2604 // rect-based hit testing and touch adjustment sometimes return a different node than
2606 // FIXME: Fix touch adjustment to avoid the need for a redundant hit test. http://crbug.com/398914
3503 // TouchStationary state is not converted to touch events, so fall through to assert.
3562 // If the active touch document has no frame or view, it's probably being destroyed
3567 // First do hit tests for any new touch points.
3595 // Keep track of which document should receive all touch events
3603 // since we shouldn't get a touchstart for a touch that's already
3618 // If there's no document receiving touch events, or no handlers on the
3631 // http://www.w3.org/TR/touch-events/#touchevent-interface for how these
3658 // The target should be the original target for this touch, so get
3684 // touchstart), or that the touch started outside the active touch
3685 // sequence document. We should still include the touch in the
3708 RefPtrWillBeRawPtr<Touch> touch = Touch::create(
3711 // Ensure this target's touch list exists, even if it ends up empty, so
3723 touches->append(touch);
3724 targetTouchesIterator->value->append(touch);
3737 changedTouches[pointState].m_touches->append(touch);
3785 // touch-action from the target node up to the nearest scrollable ancestor
3797 // If we've reached an ancestor that supports a touch action, search no further.