1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/document.querySelectorAll.html
2024-05-06 16:22:18 +02:00

23 lines
422 B
HTML

<!DOCTYPE html>
<html>
<body>
<p class="a">Class a.</p>
<p class="b">Class b.</p>
<script>
function myFunction() {
var x = document.querySelectorAll('.nonexistent');
console.assert(x.length === 0, 'nonexistent elements');
var y = document.querySelectorAll('p');
console.assert(y.length == 2, 'Two p');
}
console.error('document.querySelectorAll.html');
myFunction();
console.exit(0);
</script>
</body>
</html>