ladybird/Tests/LibWeb/Text/input/ShadowDOM/replace-declarative-shadow-root-with-style-sheet.html
2025-03-20 11:50:49 +01:00

10 lines
300 B
HTML

<!DOCTYPE html>
<div id="hmmst"><template shadowrootmode="open"><div><style></style></div></template></div>
<script src="../include.js"></script>
<script>
test(() => {
hmmst.attachShadow({ mode: "open" });
println("PASS (didn't crash)");
hmmst.remove();
});
</script>