| <!DOCTYPE html> | |
| <html style="width: 100%; height: 100%"> | |
| <head> | |
| <script> | |
| window.addEventListener('load', function(){ // on page load | |
| document.body.addEventListener('touchstart', | |
| function(e){ | |
| e.preventDefault(); | |
| }, { passive: false }); | |
| }, false); | |
| </script> | |
| </head> | |
| <!-- Be sure to set 100% width/height so the test can determine an appropriate | |
| screen region for targeting events. --> | |
| <body style="width: 100%; height: 100%"> | |
| </body> | |
| </html> |