mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
a464157d4d
Additionally add a test to test/ecmascript/document_write.html. Thanks to Kirk Reiser for observing that ELinks only printed the first.
12 lines
321 B
HTML
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>
|