blob: 22ae136a08e7c3c67af17928cb96726c6b53439b [file] [log] [blame]
document.ontouchstart = touchStartHandler;
function touchStartHandler(e)
{
var target = e.touches[0].target;
document.body.removeChild(target);
window.location = 'resources/send-touch-up.html';
}
description("If this test does not crash then you pass!");
if (window.testRunner)
testRunner.waitUntilDone();
if (window.eventSender) {
eventSender.clearTouchPoints();
eventSender.addTouchPoint(50, 150);
eventSender.touchStart();
} else
debug('This test requires DRT.');