/external/webkit/LayoutTests/fast/events/touch/ |
touch-coords-in-zoom-and-scroll-expected.txt | 2 PASS event.touches[0].clientX is 100 3 PASS event.touches[0].clientY is 100 4 PASS event.touches[0].pageX is 100 5 PASS event.touches[0].pageY is 100 8 PASS event.touches[0].clientX is 83 9 PASS event.touches[0].clientY is 83 10 PASS event.touches[0].pageX is 83 11 PASS event.touches[0].pageY is 83 14 PASS event.touches[0].clientX is 100 15 PASS event.touches[0].clientY is 10 [all...] |
touch-target-limited-expected.txt | 1 Tests that the target of touches match the element where the event originated, not where the touch is currently occurring. This is a limited version of test touch-target.html that avoids the situation where one touch point is released while another is maintained. 8 PASS event.touches[0].target.id is "targetA" 9 PASS event.touches[1].target.id is "targetB" 12 PASS event.touches[0].target.id is "targetA" 13 PASS event.touches[1].target.id is "targetB" 16 PASS event.touches[0].target.id is "targetA" 17 PASS event.touches[1].target.id is "targetB" 20 PASS event.touches[0].target.id is "targetA" 21 PASS event.touches[1].target.id is "targetB" 24 PASS event.touches[0].target.id is "targetA [all...] |
touch-target-expected.txt | 1 Tests that the target of touches match the element where the event originated, not where the touch is currently occurring. 8 PASS event.touches[0].target.id is "targetA" 9 PASS event.touches[1].target.id is "targetB" 12 PASS event.touches[0].target.id is "targetA" 13 PASS event.touches[1].target.id is "targetB" 16 PASS event.touches[0].target.id is "targetA" 17 PASS event.touches[1].target.id is "targetB" 20 PASS event.touches[0].target.id is "targetA" 21 PASS event.touches[1].target.id is "targetB" 24 PASS event.touches[0].target.id is "targetA [all...] |
document-create-touch-list-expected.txt | 11 PASS ts.touches.length is 2 12 PASS ts.touches[0].identifier is 12341 13 PASS ts.touches[0].clientX is 60 14 PASS ts.touches[1].screenY is 120
|
touch-active-state-expected.txt | 1 Test touches set the active state.
|
touch-coords-in-zoom-and-scroll.html | 56 shouldBe("event.touches[0].clientX", "100"); 57 shouldBe("event.touches[0].clientY", "100"); 58 shouldBe("event.touches[0].pageX", "100"); 59 shouldBe("event.touches[0].pageY", "100"); 72 shouldBe("event.touches[0].clientX", "83"); 73 shouldBe("event.touches[0].clientY", "83"); 74 shouldBe("event.touches[0].pageX", "83"); 75 shouldBe("event.touches[0].pageY", "83"); 88 shouldBe("event.touches[0].clientX", "100"); 89 shouldBe("event.touches[0].clientY", "100") [all...] |
basic-multi-touch-events-expected.txt | 9 PASS lastEvent.touches.length is 2 14 PASS lastEvent.touches[0].pageX is 10 15 PASS lastEvent.touches[0].pageY is 10 16 PASS lastEvent.touches[0].clientX is 10 17 PASS lastEvent.touches[0].clientY is 10 18 PASS lastEvent.touches[0].identifier is 0 19 PASS lastEvent.touches[1].pageX is 20 20 PASS lastEvent.touches[1].pageY is 30 21 PASS lastEvent.touches[1].clientX is 20 22 PASS lastEvent.touches[1].clientY is 3 [all...] |
multi-touch-grouped-targets-expected.txt | 1 Tests that the an event is sent for every touch listener, and target touches contains all the points for that target 7 PASS event.touches.length is 3 9 PASS event.touches.length is 3 11 PASS event.touches.length is 3 13 PASS event.touches.length is 3 16 PASS event.touches.length is 0 20 PASS event.touches.length is 0
|
basic-single-touch-events-expected.txt | 7 PASS lastEvent.touches.length is 1 13 PASS lastEvent.touches[0].target.id is "touchtarget" 14 PASS lastEvent.touches[0].pageX is 10 15 PASS lastEvent.touches[0].pageY is 10 16 PASS lastEvent.touches[0].clientX is 10 17 PASS lastEvent.touches[0].clientY is 10 18 PASS lastEvent.touches[0].identifier is 0 30 PASS lastEvent.touches.length is 1 35 PASS lastEvent.touches[0].pageX is 50 36 PASS lastEvent.touches[0].pageY is 5 [all...] |
touch-inside-iframe-expected.txt | 2 Test iframes receive touches correctly.
|
basic-multi-touch-events-limited-expected.txt | 7 PASS lastEvent.touches.length is 2 12 PASS lastEvent.touches[0].pageX is 10 13 PASS lastEvent.touches[0].pageY is 10 14 PASS lastEvent.touches[0].clientX is 10 15 PASS lastEvent.touches[0].clientY is 10 16 PASS lastEvent.touches[0].identifier is 0 17 PASS lastEvent.touches[1].pageX is 20 18 PASS lastEvent.touches[1].pageY is 30 19 PASS lastEvent.touches[1].clientX is 20 20 PASS lastEvent.touches[1].clientY is 3 [all...] |
touch-inside-iframe.html | 10 description('Test iframes receive touches correctly.'); 16 touch = event.touches[0];
|
/frameworks/base/tests/RenderScriptTests/HelloWorld/ |
_index.html | 1 <p>A Renderscript graphics application that draws the text "Hello, World!" where the user touches.</p
|
/external/webkit/LayoutTests/fast/events/touch/script-tests/ |
touch-target.js | 29 shouldBeEqualToString('event.touches[0].target.id', div1.id); 30 shouldBeEqualToString('event.touches[1].target.id', div2.id); 33 shouldBeEqualToString('event.touches[0].target.id', div2.id); 34 shouldBeEqualToString('event.touches[1].target.id', div1.id); 54 shouldBeEqualToString('event.touches[0].target.id', div1.id); 55 shouldBeEqualToString('event.touches[1].target.id', div2.id); 58 shouldBeEqualToString('event.touches[0].target.id', div2.id); 59 shouldBeEqualToString('event.touches[1].target.id', div1.id); 80 description("Tests that the target of touches match the element where the event originated, not where the touch is currently occurring.");
|
document-create-touch-list.js | 23 shouldBe("ts.touches.length", "2"); 24 shouldBe("ts.touches[0].identifier", "12341"); 25 shouldBe("ts.touches[0].clientX", "60"); 26 shouldBe("ts.touches[1].screenY", "120");
|
touch-target-limited.js | 29 shouldBeEqualToString('event.touches[0].target.id', div1.id); 30 shouldBeEqualToString('event.touches[1].target.id', div2.id); 33 shouldBeEqualToString('event.touches[0].target.id', div2.id); 34 shouldBeEqualToString('event.touches[1].target.id', div1.id); 54 shouldBeEqualToString('event.touches[0].target.id', div1.id); 55 shouldBeEqualToString('event.touches[1].target.id', div2.id); 58 shouldBeEqualToString('event.touches[0].target.id', div2.id); 59 shouldBeEqualToString('event.touches[1].target.id', div1.id); 80 description("Tests that the target of touches match the element where the event originated, not where the touch is currently occurring. This is a limited version of test touch-target.html that avoids the situation where one touch point is released while another is maintained.");
|
basic-multi-touch-events.js | 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString()); 57 verifyTouchPoint("touches", 0, 10, 10, 0); 58 verifyTouchPoint("touches", 1, 20, 30, 1); 66 verifyTouchPoint("touches", 0, 15, 15, 0); 68 verifyTouchPoint("touches", 1, 20, 30, 1); 72 verifyTouchPoint("touches", 0, 20, 30, 1);
|
basic-multi-touch-events-limited.js | 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString()); 57 verifyTouchPoint("touches", 0, 10, 10, 0); 58 verifyTouchPoint("touches", 1, 20, 30, 1); 66 verifyTouchPoint("touches", 0, 15, 15, 0); 67 verifyTouchPoint("touches", 1, 25, 35, 1);
|
basic-single-touch-events.js | 37 shouldBe("lastEvent.touches.length", totalTouchCount.toString()); 58 shouldBeEqualToString("lastEvent.touches[0].target.id", "touchtarget"); 59 verifyTouchPoint("touches", 0, 10, 10, 0); 65 verifyTouchPoint("touches", 0, 50, 50, 0); 83 shouldBeEqualToString("lastEvent.touches[0].target.tagName", "DIV");
|
multi-touch-grouped-targets.js | 28 shouldBe('event.touches.length', '3'); 45 shouldBe('event.touches.length', '0'); 65 description("Tests that the an event is sent for every touch listener, and target touches contains all the points for that target");
|
/external/webkit/LayoutTests/fast/events/touch/resources/ |
touch-stale-node-crash.js | 5 var target = e.touches[0].target;
|
/external/webkit/Source/WebCore/dom/ |
TouchEvent.h | 44 static PassRefPtr<TouchEvent> create(TouchList* touches, 50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches, 55 void initTouchEvent(TouchList* touches, TouchList* targetTouches, 61 TouchList* touches() const { return m_touches.get(); } function in class:WebCore::TouchEvent 72 TouchEvent(TouchList* touches, TouchList* targetTouches,
|
TouchEvent.cpp | 41 TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, 47 , m_touches(touches) 60 void TouchEvent::initTouchEvent(TouchList* touches, TouchList* targetTouches, 70 m_touches = touches;
|
TouchEvent.idl | 31 readonly attribute TouchList touches; 39 void initTouchEvent(in TouchList touches,
|
/frameworks/base/core/tests/coretests/src/android/util/ |
TouchModeFlexibleAsserts.java | 27 * are more flexible (allowing up to MAX_ATTEMPTS touches to enter touch mode via touch or 45 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode); 57 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode);
|