ladybird/Tests/LibWeb/Text/input/HTML/ShadowRealm-DOM-event.html

10 lines
258 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
const shadowRealm = new ShadowRealm();
const result = shadowRealm.evaluate(`() => new Event("My DOM Event").type;`)();
println(result);
});
</script>