mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] element.lastChild
This commit is contained in:
parent
b161c71bec
commit
4b108f43a6
20
test/ecmascript/assert/element.lastChild.html
Normal file
20
test/ecmascript/assert/element.lastChild.html
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<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();
|
||||||
|
console.exit(0);
|
||||||
|
</script>
|
||||||
|
<button onclick="return aa()">Click me!</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user