1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/test/ecmascript/document_write5.html
Witold Filipczyk dae3d1cdc4 [test] 1 One 2 Two 3 Three
Now is:
1
2
3
One
Two
Three

but ought to be:
1
One
2
Two
3
Three
2022-12-28 19:38:19 +01:00

20 lines
245 B
HTML

<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>1</p>
<script>
document.write('<p>One</p>');
</script>
<p>2</p>
<script>
document.write('<p>Two</p>');
</script>
<p>3</p>
<script>
document.write('<p>Three</p>');
</script>
</body>
</html>