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

[assert] element.firstChild

This commit is contained in:
Witold Filipczyk 2024-04-12 19:39:45 +02:00
parent 59612be1f8
commit 370c9d90c5

View File

@ -0,0 +1,21 @@
<html>
<body>
<a href="/home">BBB</a>
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
<a dir="rtl" id="blabla" href="/"><b id="b1">AAA</b><u dir="auto" id="ble" title="test">UUU</u>AAAAAAA
</a>
<a id="bb" dir="blalalala" href="/">BB</a>
<script>
function aa()
{
var x = document.getElementById('blabla').firstChild.id;
console.assert(x === 'b1', 'b1');
}
console.error('element.firstChild.html');
aa();
console.exit(0);
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>