1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/element.firstChild.html

22 lines
494 B
HTML
Raw Normal View History

2024-04-12 13:39:45 -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">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();
2024-04-12 13:39:45 -04:00
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>