1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/assert/window.setTimeout.html
2024-06-09 18:53:28 +02:00

10 lines
153 B
HTML

<script>
function proc()
{
console.assert(true, "True");
console.exit();
}
console.error("window.setTimeout.html");
window.setTimeout(proc);
</script>