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

[test] testcase for document.write.

Date must be displayed in the middle of the page. Between 1 and 2.
This commit is contained in:
Witold Filipczyk 2022-11-14 17:09:45 +01:00
parent 5fa0552ab0
commit 0823d1b64e

View File

@ -0,0 +1,10 @@
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>1</p>
<script>document.write(Date());</script>
<p>2</p>
</body>
</html>