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

11 lines
289 B
HTML
Raw Normal View History

<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>