1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[assert] element.contains.html

This commit is contained in:
Witold Filipczyk 2024-04-12 17:36:10 +02:00
parent 1b1b34e0d7
commit 839a1493ac

View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
border: 1px solid black;
}
</style>
</head>
<body>
<div id="myDIV">
<p>I am a p element inside div, and I have a <span id="mySPAN"><b>span</b></span> element inside of me.</p>
</div>
<span id="mySPAN2"><b>span</b></span>
<p>Click the button to find out if the div element contains a span element.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var span = document.getElementById("mySPAN");
var span2 = document.getElementById("mySPAN2");
var div = document.getElementById("myDIV").contains(span);
var div2 = document.getElementById("myDIV").contains(span2);
console.assert(div, 'myDIV contains mySPAN');
console.assert(!div2, '!myDIV contains mySPAN2');
}
console.error('element.contains.html');
myFunction();
console.exit(0);
</script>
</body>
</html>