1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/assert/element.childElementCount.html
2024-04-12 17:01:47 +02:00

25 lines
561 B
HTML

<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>