mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 13:48:25 +00:00
If you can believe it, we were once again using StringBuilder's append() when we really wanted append_code_point().
10 lines
220 B
HTML
10 lines
220 B
HTML
<div id=test></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const formData = new FormData();
|
|
formData.append("🧐", "");
|
|
println("PASS (Didn't crash)");
|
|
});
|
|
</script>
|