Newer
Older
minerva / Tests / LibWeb / Text / input / DOM / setAttribute-with-emoji-in-attribute-name.html
@minerva minerva on 13 Jul 207 bytes Initial commit
<script src="../include.js"></script>
<script>
    test(() => {
        const e = document.createElement("div");
        e.setAttribute("🧐", "");
        println("PASS (Didn't crash)");
    });
</script>