mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
[assert] element.firstChild
This commit is contained in:
parent
59612be1f8
commit
370c9d90c5
21
test/ecmascript/assert/element.firstChild.html
Normal file
21
test/ecmascript/assert/element.firstChild.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user