mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
27 lines
392 B
HTML
27 lines
392 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<button onclick="myFunction()">Try it</button>
|
||
|
|
||
|
<a href="/">/</a>
|
||
|
<a href="/home">/home</a>
|
||
|
<img src="blabla.gif" />
|
||
|
<img src="blabla2.gif" />
|
||
|
|
||
|
<p id="demo"></p>
|
||
|
|
||
|
<script>
|
||
|
function myFunction() {
|
||
|
var x = document.images.length;
|
||
|
console.assert(x == 2, '2');
|
||
|
}
|
||
|
|
||
|
console.error('document.images.html');
|
||
|
myFunction();
|
||
|
console.exit(0);
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|