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

[assert] element.querySelectorAll

This commit is contained in:
Witold Filipczyk 2024-05-06 16:31:53 +02:00
parent bbe14cddc3
commit 48ff6810d4

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<body>
<p class="a">Class a.</p>
<p class="b">Class b.</p>
<p id="start">
<b class="a">This a class.</b>
<b class="b">This b class.</b>
</p>
<script>
function myFunction() {
var el = document.getElementById('start');
var x = el.querySelectorAll('.nonexistent');
console.assert(x.length === 0, 'nonexistent element');
var y = el.querySelectorAll('.b');
console.assert(y.length === 1, 'b class b.');
}
console.error('element.querySelectorAll.html');
myFunction();
console.exit(0);
</script>
</body>
</html>