1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/document.images.html
2024-06-01 13:30:03 +02:00

27 lines
391 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();
</script>
</body>
</html>