mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
6adca27072
If --test 1, then elinks is headless. Display is /dev/null. console.exit(0); or console.exit(1); terminates elinks session. console.exit is implemented for spidermonkey only.
6 lines
128 B
HTML
6 lines
128 B
HTML
<script>
|
|
console.assert(0 % 2 === 0, "O is not even");
|
|
console.assert(1 % 2 === 0, "1 is not even");
|
|
console.exit(0);
|
|
</script>
|