2024-04-12 15:12:49 -04:00
|
|
|
<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">UUUAAAAAAA</u></a>
|
|
|
|
<a id="bb" dir="blalalala" href="/">BB</a>
|
|
|
|
<script>
|
|
|
|
function aa()
|
|
|
|
{
|
|
|
|
var x = document.getElementById('blabla').lastChild.innerHTML;
|
|
|
|
console.assert(x === 'UUUAAAAAAA', 'UUUAAAAAAA');
|
|
|
|
}
|
|
|
|
|
|
|
|
console.error('element.lastChild.html');
|
|
|
|
aa();
|
2024-06-01 07:30:03 -04:00
|
|
|
console.exit();
|
2024-04-12 15:12:49 -04:00
|
|
|
</script>
|
|
|
|
<button onclick="return aa()">Click me!</button>
|
|
|
|
</body>
|
|
|
|
</html>
|