Home | History | Annotate | Download | only in tests

Lines Matching refs:touches

213         webTouchEvent.touches[0].state = WebTouchPoint::StateMoved;
214 webTouchEvent.touches[0].screenPosition.x = 10;
215 webTouchEvent.touches[0].screenPosition.y = 10;
216 webTouchEvent.touches[0].position.x = 10;
217 webTouchEvent.touches[0].position.y = 10;
218 webTouchEvent.touches[0].radiusX = 10;
219 webTouchEvent.touches[0].radiusY = 10;
273 EXPECT_EQ(10, webTouchBuilder.touches[0].screenPosition.x);
274 EXPECT_EQ(10, webTouchBuilder.touches[0].screenPosition.y);
275 EXPECT_EQ(10, webTouchBuilder.touches[0].position.x);
276 EXPECT_EQ(10, webTouchBuilder.touches[0].position.y);
277 EXPECT_EQ(10, webTouchBuilder.touches[0].radiusX);
278 EXPECT_EQ(10, webTouchBuilder.touches[0].radiusY);