871b204fd1
EmualationManager used to be injecting touch hooks to properly support touch emulation. However, these are no longer necessary, since https://crbug.com/133915 is long fixed.
13 lines
271 B
HTML
13 lines
271 B
HTML
<!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>
|