1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/window.setTimeout.html

10 lines
153 B
HTML
Raw Normal View History

2024-06-09 12:53:28 -04:00
<script>
function proc()
{
console.assert(true, "True");
console.exit();
}
console.error("window.setTimeout.html");
window.setTimeout(proc);
</script>