mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
10 lines
153 B
HTML
10 lines
153 B
HTML
|
<script>
|
||
|
function proc()
|
||
|
{
|
||
|
console.assert(true, "True");
|
||
|
console.exit();
|
||
|
}
|
||
|
console.error("window.setTimeout.html");
|
||
|
window.setTimeout(proc);
|
||
|
</script>
|