mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05: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:
parent
1c87b361b2
commit
dae3d1cdc4
19
test/ecmascript/document_write5.html
Normal file
19
test/ecmascript/document_write5.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user