blob: 1979c376ecc7117d60eeecc8b8fbda5b87931da4 [file] [log] [blame]
<html>
<style>
#janktest{
width: 1000px;
height: 10000px;
}
</style>
<body onload='setup()'>
<div id="janktest"></div>
</body>
<script>
function setup() {
document.getElementById('janktest').addEventListener('touchstart', (e) => {
var end = performance.now() + 1200;
while (performance.now() < end);
}, {passive: false});
}
</script>
</html>