1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/document_write.html
Miciah Dashiel Butler Masters a464157d4d SEE & SMJS: document.write(ln): use all arguments
Additionally add a test to test/ecmascript/document_write.html.

Thanks to Kirk Reiser for observing that ELinks only printed the first.
2006-02-12 04:33:42 +00:00

12 lines
321 B
HTML

<html>
<body>
<a href="history.html">history.html</a><br/>
<script type="text/javascript">
document.writeln('<a href="ontest.html">Test</a><br/>');
document.writeln('<a href="infinite2.html">infinite2.html</a><br/>');
document.write(1,2,'3', '<br/>');
</script>
<a href="onload.html">onload.html</a><br/>
</body>
</html>