mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] element.firstElementChild
This commit is contained in:
parent
370c9d90c5
commit
9c75225871
21
test/ecmascript/assert/element.firstElementChild.html
Normal file
21
test/ecmascript/assert/element.firstElementChild.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="/">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(0);
|
||||
</script>
|
||||
<button onclick="return aa()">blabla firstElementChild outerHTML</button>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user