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

[assert] document.head (failed)

This commit is contained in:
Witold Filipczyk 2024-04-12 20:32:59 +02:00
parent 6313f8302e
commit eaeee7e849

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head><title>HEAD</title></head>
<body id="test">
<button onclick="myFunction()">Try it</button>
<a href="/">/</a>
<a href="/home">/home</a>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.head; //.innerHTML;
console.assert(x === '<TITLE>HEAD></TITLE>', x);
}
console.error('document.head.html');
myFunction();
console.exit(0);
</script>
</body>
</html>