tenfourfox/js/xpconnect/tests/mochitest/file_bug760131.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
406 B
HTML

<html>
<div id="target" ontouchstart="alert();"></div>
<script type="application/javascript">
/** Test for Bug 760131 **/
function accessTouches(evt)
{
var thrown = false;
try {
var a = evt.touches;
} catch (e) {
thrown = true;
}
ok(!thrown, "Unwrapping a TouchList shouldn't throw");
}
document.getElementById("target").ontouchstart = accessTouches;
</script>
</pre>
</body>
</html>