mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 15:42:52 +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>
|