mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 06:54:59 +00:00

We were mistakenly using StringBuilder's append(char) when we really wanted append_code_point(u32).
8 lines
207 B
HTML
8 lines
207 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const e = document.createElement("div");
|
|
e.setAttribute("🧐", "");
|
|
println("PASS (Didn't crash)");
|
|
});
|
|
</script>
|