mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[assert] element.parentElement
This commit is contained in:
parent
fbec5b7c64
commit
6bcd06ce38
29
test/ecmascript/assert/element.parentElement.html
Normal file
29
test/ecmascript/assert/element.parentElement.html
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<p>Example list:</p>
|
||||
|
||||
<ul>
|
||||
<li id="myLI">Coffee</li>
|
||||
<li>Tea</li>
|
||||
</ul>
|
||||
|
||||
<p>Click the button to get the node name of the parent node of the li element in the list.</p>
|
||||
|
||||
<button onclick="myFunction()">Try it</button>
|
||||
|
||||
<p id="demo"></p>
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
var x = document.getElementById("myLI").parentElement.tagName;
|
||||
console.assert(x === 'UL', 'parent is UL');
|
||||
}
|
||||
console.error("element.parentElement.html");
|
||||
myFunction();
|
||||
console.exit(0);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user