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:
parent
e12140658e
commit
06e334ebd0
@ -69,6 +69,7 @@ took = [
|
||||
'keyboardEvent.html',
|
||||
'navigator.appCodeName.html',
|
||||
'nodelist.forEach.html',
|
||||
'window.setTimeout.html',
|
||||
'URL.html']
|
||||
|
||||
if conf_data.get('CONFIG_ECMASCRIPT')
|
||||
|
9
test/ecmascript/assert/window.setTimeout.html
Normal file
9
test/ecmascript/assert/window.setTimeout.html
Normal file
@ -0,0 +1,9 @@
|
||||
<script>
|
||||
function proc()
|
||||
{
|
||||
console.assert(true, "True");
|
||||
console.exit();
|
||||
}
|
||||
console.error("window.setTimeout.html");
|
||||
window.setTimeout(proc);
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user