puppeteer/third_party/phantomjs/test/www/js-infinite-loop.html

12 lines
161 B
HTML
Raw Normal View History

2017-05-11 07:06:41 +00:00
<html>
<head>
<script type="text/javascript">
function forever() {
while(true) {}
}
</script>
</head>
<body onload="forever();">
</body>
</html>