1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[test] window.setTimeout

This commit is contained in:
Witold Filipczyk 2024-06-09 18:53:28 +02:00
parent e12140658e
commit 06e334ebd0
2 changed files with 10 additions and 0 deletions

View File

@ -69,6 +69,7 @@ took = [
'keyboardEvent.html',
'navigator.appCodeName.html',
'nodelist.forEach.html',
'window.setTimeout.html',
'URL.html']
if conf_data.get('CONFIG_ECMASCRIPT')

View File

@ -0,0 +1,9 @@
<script>
function proc()
{
console.assert(true, "True");
console.exit();
}
console.error("window.setTimeout.html");
window.setTimeout(proc);
</script>