0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/document.head.html

26 lines
406 B
HTML
Raw Normal View History

2024-04-12 20:32:59 +02:00
<!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();
2024-04-12 20:32:59 +02:00
</script>
</body>
</html>