1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/assert/element.querySelector.html
2024-06-01 13:30:03 +02:00

32 lines
655 B
HTML

<!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');
console.assert(!(el === null), 'start exists');
var x = el.querySelector('.nonexistent');
console.assert(x === null, 'nonexistent element');
var y = el.querySelector('.b');
console.assert(!(y === null), 'Class b');
var inp = y.innerHTML;
console.assert(inp === 'This b class.', 'Class b.');
}
console.error('element.querySelector.html');
myFunction();
console.exit();
</script>
</body>
</html>