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

[assert] element.childElementCount

This commit is contained in:
Witold Filipczyk 2024-04-12 17:01:47 +02:00
parent 274b832fa6
commit 5f8898b2a2

View File

@ -0,0 +1,24 @@
<html>
<body>
<a id="blabla" href="/" rel="nofollow"><b>AAA</b><u id="ble">UUU</u></a>
<b id="empty"></b>
<script>
function aa()
{
console.assert(document.getElementById('blabla').childElementCount == 2, 'Two, b and u');
}
function bb()
{
console.assert(document.getElementById('empty').childElementCount == 0, 'zero');
}
console.error('element.childElementCount.html');
aa();
bb();
console.exit(0);
</script>
<button onclick="return aa()">blabla child element count</button>
<button onclick="return bb()">empty child element count</button>
</body>
</html>