1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[assert] document.images

This commit is contained in:
Witold Filipczyk 2024-04-12 20:36:00 +02:00
parent eaeee7e849
commit 4128945063

View File

@ -0,0 +1,26 @@
<!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>