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