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

[assert] document.body.children

This commit is contained in:
Witold Filipczyk 2024-04-12 16:31:49 +02:00
parent 1435c2da92
commit da14bf16cd

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<body>
<p>Click the button to get the tag names of the body element's children.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var c = document.body.children;
var txt = "";
var i;
for (i = 0; i < c.length; i++) {
txt = txt + c[i].tagName + "<br>";
}
console.assert(txt === '#text<br>P<br>#text<br>BUTTON<br>#text<br>P<br>#text<br>SCRIPT<br>#text<br>#text<br>', txt);
}
console.error('document.body.children');
myFunction();
console.exit(0);
</script>
</body>
</html>