blob: 736732a0a477674d67a60cbdbe2df0e82e20ac65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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>
|