mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 15:42:52 +00:00
10 lines
289 B
HTML
10 lines
289 B
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>
|