1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/element.matches.html
2024-06-01 13:30:03 +02:00

34 lines
780 B
HTML

<ul id="birds">
<li>Orange-winged parrot</li>
<li class="endangered">Philippine eagle</li>
<li>Great white pelican</li>
</ul>
<script type="text/javascript">
console.error('element.matches.html');
var birds = document.getElementsByTagName('li');
var ch = false;
console.assert(birds.length === 3, '3');
for (var i = 0; i < birds.length; i++) {
if (birds.item(i).matches('.endangered')) {
console.assert(birds.item(i).innerHTML === 'Philippine eagle', birds.item(i).innerHTML);
ch = true;
}
}
console.assert(ch, 'was matched');
// birds = document.querySelectorAll('li');
ch = false;
// var counter = 0;
// birds.forEach(function(b) {
// counter++;
// });
// console.assert(counter === 3, 'Three');
console.exit();
</script>