puppeteer/third_party/phantomjs/test/www/js-infinite-loop.html
2017-05-11 00:06:41 -07:00

12 lines
161 B
HTML

<html>
<head>
<script type="text/javascript">
function forever() {
while(true) {}
}
</script>
</head>
<body onload="forever();">
</body>
</html>