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

[test] Another testcase.

Only date must be displayed, without other tags.
This commit is contained in:
Witold Filipczyk 2022-11-14 20:19:55 +01:00
parent 0823d1b64e
commit 71174f6ddf

View File

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