mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00

If you can believe it, we were once again using StringBuilder's append() when we really wanted append_code_point().
9 lines
220 B
HTML
9 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>
|