about summary refs log blame commit diff stats
path: root/test/js/settimeout.html
blob: e57dba7f9e881b578e7fa16c50f073a54c64ebf9 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                   
<!doctype html>
<title>setTimeout test</title>
<!-- For now, this only tests whether setTimeout crashes the buffer
     or not.  (There has been a bug where it did.) -->
<script>
setTimeout(() => void(0), 1000);
</script>
Success