mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
10 lines
236 B
HTML
10 lines
236 B
HTML
<!DOCTYPE html>
|
|
<div id=test></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const formData = new FormData();
|
|
formData.append("🧐", "");
|
|
println("PASS (Didn't crash)");
|
|
});
|
|
</script>
|