45ab3e0332
This adds a proof-of-concept of `puppeteer-firefox`. This consists of two parts: - `//experimental/juggler` - patches to apply to Firefox. - `//experimental/puppeteer-firefox` - front-end code to be merged with Puppeteer. As things become more stable, we'll gradually move it out of the experimental folder.
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>
|