1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/assert/element.firstElementChild.html
2024-06-01 13:30:03 +02:00

22 lines
553 B
HTML

<html>
<body>
<a href="/home">BBB</a>
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
<a dir="rtl" id="blabla" href="/">BBB<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').firstElementChild.outerHTML;
console.assert(x === '<b id="b1">AAA</b>', 'B');
}
console.error('element.firstElementChild');
aa();
console.exit();
</script>
<button onclick="return aa()">blabla firstElementChild outerHTML</button>
</body>
</html>