1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/element.lastElementChild.html
2024-06-01 13:30:03 +02:00

22 lines
596 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<!-- comment -->
</a>
<a id="bb" dir="blalalala" href="/">BB</a>
<script>
function aa()
{
var x = document.getElementById('blabla').lastElementChild.outerHTML;
console.assert(x === '<u dir="auto" id="ble" title="test">UUU</u>', 'u');
}
console.error('element.lastElementChild.html');
aa();
console.exit();
</script>
<button onclick="return aa()">blabla lastElementChild outerHTML</button>
</body>
</html>