mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
26 lines
407 B
HTML
26 lines
407 B
HTML
<!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>
|