mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
[test] window.setTimeout
This commit is contained in:
parent
e12140658e
commit
06e334ebd0
@ -69,6 +69,7 @@ took = [
|
|||||||
'keyboardEvent.html',
|
'keyboardEvent.html',
|
||||||
'navigator.appCodeName.html',
|
'navigator.appCodeName.html',
|
||||||
'nodelist.forEach.html',
|
'nodelist.forEach.html',
|
||||||
|
'window.setTimeout.html',
|
||||||
'URL.html']
|
'URL.html']
|
||||||
|
|
||||||
if conf_data.get('CONFIG_ECMASCRIPT')
|
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