1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/document.head.html

26 lines
407 B
HTML
Raw Normal View History

2024-04-12 14:32:59 -04: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(0);
</script>
</body>
</html>