Searched refs:targetTouches (Results 1 – 15 of 15) sorted by relevance
/external/webkit/LayoutTests/fast/events/touch/ |
D | basic-multi-touch-events-limited-expected.txt | 9 PASS lastEvent.targetTouches.length is 2 32 PASS lastEvent.targetTouches[0].pageX is 10 33 PASS lastEvent.targetTouches[0].pageY is 10 34 PASS lastEvent.targetTouches[0].clientX is 10 35 PASS lastEvent.targetTouches[0].clientY is 10 36 PASS lastEvent.targetTouches[0].identifier is 0 37 PASS lastEvent.targetTouches[1].pageX is 20 38 PASS lastEvent.targetTouches[1].pageY is 30 39 PASS lastEvent.targetTouches[1].clientX is 20 40 PASS lastEvent.targetTouches[1].clientY is 30 [all …]
|
D | basic-multi-touch-events-expected.txt | 11 PASS lastEvent.targetTouches.length is 2 34 PASS lastEvent.targetTouches[0].pageX is 10 35 PASS lastEvent.targetTouches[0].pageY is 10 36 PASS lastEvent.targetTouches[0].clientX is 10 37 PASS lastEvent.targetTouches[0].clientY is 10 38 PASS lastEvent.targetTouches[0].identifier is 0 39 PASS lastEvent.targetTouches[1].pageX is 20 40 PASS lastEvent.targetTouches[1].pageY is 30 41 PASS lastEvent.targetTouches[1].clientX is 20 42 PASS lastEvent.targetTouches[1].clientY is 30 [all …]
|
D | touch-target-limited-expected.txt | 10 PASS event.targetTouches.length is 1 14 PASS event.targetTouches.length is 1 18 PASS event.targetTouches.length is 1 22 PASS event.targetTouches.length is 1 26 PASS event.targetTouches.length is 1 30 PASS event.targetTouches.length is 1 34 PASS event.targetTouches.length is 1 38 PASS event.targetTouches.length is 1 42 PASS event.targetTouches.length is 1 46 PASS event.targetTouches.length is 1
|
D | basic-single-touch-events-expected.txt | 9 PASS lastEvent.targetTouches.length is 1 24 PASS lastEvent.targetTouches[0].pageX is 10 25 PASS lastEvent.targetTouches[0].pageY is 10 26 PASS lastEvent.targetTouches[0].clientX is 10 27 PASS lastEvent.targetTouches[0].clientY is 10 28 PASS lastEvent.targetTouches[0].identifier is 0 32 PASS lastEvent.targetTouches.length is 1 47 PASS lastEvent.targetTouches.length is 0 60 PASS lastEvent.targetTouches.length is 1 63 PASS lastEvent.targetTouches[0].target.tagName is "DIV" [all …]
|
D | touch-target-expected.txt | 10 PASS event.targetTouches.length is 1 14 PASS event.targetTouches.length is 1 18 PASS event.targetTouches.length is 1 22 PASS event.targetTouches.length is 1 26 PASS event.targetTouches.length is 1 30 PASS event.targetTouches.length is 1 34 PASS event.targetTouches.length is 1 38 PASS event.targetTouches.length is 1 42 PASS event.targetTouches.length is 1
|
D | multi-touch-grouped-targets-expected.txt | 17 PASS event.targetTouches.length is 0 21 PASS event.targetTouches.length is 0
|
/external/webkit/Source/WebCore/dom/ |
D | TouchEvent.h | 45 TouchList* targetTouches, TouchList* changedTouches, in create() argument 50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches, in create() 55 void initTouchEvent(TouchList* touches, TouchList* targetTouches, 62 TouchList* targetTouches() const { return m_targetTouches.get(); } in targetTouches() function 72 TouchEvent(TouchList* touches, TouchList* targetTouches,
|
D | TouchEvent.cpp | 41 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, in TouchEvent() argument 48 , m_targetTouches(targetTouches) in TouchEvent() 60 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, in initTouchEvent() argument 71 m_targetTouches = targetTouches; in initTouchEvent()
|
D | TouchEvent.idl | 32 readonly attribute TouchList targetTouches; 40 in TouchList targetTouches,
|
/external/webkit/LayoutTests/fast/events/touch/script-tests/ |
D | multi-touch-grouped-targets.js | 29 if (event.targetTouches.length != expectedTargetTouches) 30 …testFailed('Wrong targetTouch length: ' + event.targetTouches.length + ' vs ' + expectedTargetTouc… 31 for (var i = 0; i < event.targetTouches.length; i++) 33 if (event.targetTouches[i].target.id != div_id) 34 … testFailed('Incorrect targetTouch ID: ' + event.targetTouches[i].target.id + ' vs ' + div_id);
|
/external/chromium/chrome/browser/resources/ntp4/ |
D | touch_handler.js | 388 e.targetTouches = []; 392 e.targetTouches[0] = touch; 471 var touch = e.targetTouches[0];
|
/external/chromium/chrome/browser/resources/touch_ntp/ |
D | touchhandler.js | 388 e.targetTouches = []; 392 e.targetTouches[0] = touch; 471 var touch = e.targetTouches[0];
|
/external/webkit/Source/WebCore/page/ |
D | EventHandler.cpp | 3232 …RefPtr<TouchList> targetTouches(isTouchCancelEvent ? emptyList : touchesByTarget.get(touchEventTar… in handleTouchEvent() local 3233 ASSERT(targetTouches); in handleTouchEvent() 3236 …TouchEvent::create(effectiveTouches.get(), targetTouches.get(), changedTouches[state].m_touches.ge… in handleTouchEvent()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-05-24 | 42883 targetTouches list. Filters a list of touches (passed) about
|
D | ChangeLog-2010-01-29 | 22921 (WebCore::TouchEvent::targetTouches):
|