summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/test/assets/detect-touch.html
blob: 80a4123fbd9704edda1805358ae97e149011a8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
  <head>
    <title>Detect Touch Test</title>
    <script src='modernizr.js'></script>
  </head>
  <body style="font-size:30vmin">
    <script>
      document.body.textContent = Modernizr.touchevents ? 'YES' : 'NO';
    </script>
  </body>
</html>