Newer
Older
minerva / Tests / LibWeb / Text / input / ShadowDOM / replace-declarative-shadow-root-with-style-sheet.html
@minerva minerva on 13 Jul 284 bytes Initial commit
<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>