1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[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
This commit is contained in:
Witold Filipczyk 2022-12-28 19:38:19 +01:00
parent 1c87b361b2
commit dae3d1cdc4

View File

@ -0,0 +1,19 @@
<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>