mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] document.head (failed)
This commit is contained in:
parent
6313f8302e
commit
eaeee7e849
25
test/ecmascript/assert/document.head.html
Normal file
25
test/ecmascript/assert/document.head.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user