OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../../resources/js-test.js"></script> | 2 <script src="../../../resources/js-test.js"></script> |
3 | 3 |
4 <p id="description"></p> | 4 <p id="description"></p> |
5 <div id="console"></div> | 5 <div id="console"></div> |
6 <script type="text/javascript"> | 6 <script type="text/javascript"> |
7 description('Test that touches created with no target does not crash during disp
atch. http://crbug.com/517962'); | 7 description('Test that touches created with no target does not crash during disp
atch. http://crbug.com/517962'); |
8 | 8 |
9 var event = new TouchEvent('touchstart', { | 9 var event = new TouchEvent('touchstart', { |
10 touches: [document.createTouch()], | 10 touches: [document.createTouch(window, null, 0, 0, 0, 0, 0)], |
11 }); | 11 }); |
12 document.body.dispatchEvent(event); | 12 document.body.dispatchEvent(event); |
13 | 13 |
14 </script> | 14 </script> |
OLD | NEW |