ladybird/Tests/LibWeb/Text/input/DOM/createEvent-hashchangeevent.html
Andreas Kling 0389f01cc8 LibWeb: Make document.createEvent("hashchangeevent") produce right type
This is supposed to return a HashChangeEvent, and now it does.
2024-04-16 19:50:45 +02:00

7 lines
159 B
HTML

<script src="../include.js"></script>
<script>
test(() => {
let e = document.createEvent("hashchangeevent");
println(e);
});
</script>