ladybird/Tests/LibWeb/Text/input/DOM/HTMLCollection-empty-string-as-property-name.html

12 lines
305 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script src="../include.js"></script>
<div id></div>
<div id=haxx></div>
<script>
test(() => {
var c = document.getElementsByTagName("*");
println("Empty string in collection: " + ("" in c));
println("'haxx' in collection: " + ("haxx" in c));
});
</script>