netsurf/test/js/dom-element-lastElementChil...

12 lines
414 B
HTML
Raw Normal View History

2012-11-18 16:38:07 +04:00
<html>
<head>
<link rel="stylesheet" type="text/css" href="tst.css">
<title>DOM lastElementChild reference</title>
</head>
<body>
<h1>DOM lastElementChild reference</h1>
<p><b>head.lastElementChild:</b> <script>document.write(document.head.lastElementChild.textContent);</script></p>
<p><b>body.lastElementChild:</b> <script>document.write(document.body.lastElementChild.textContent);</script></p>
</body>
</html>