blob: 94f0b88d84f12264cf3a491d115aa8acd15211ee [file] [log] [blame]
document.ontouchstart = touchStartHandler;
function touchStartHandler(e)
{
var target = e.touches[0].target;
document.body.removeChild(target);
}
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();
window.location = 'resources/send-touch-up.html';
} else
debug('This test requires DRT.');