1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/document.body.children.html

30 lines
567 B
HTML
Raw Normal View History

2024-04-12 10:31:49 -04:00
<!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();
2024-04-12 10:31:49 -04:00
</script>
</body>
</html>