ladybird/Tests/LibWeb/Text/input/FileAPI/Blob-empty-constructor.html
2025-03-20 11:50:49 +01:00

11 lines
249 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
const blob = new Blob;
if (blob.size === 0 && blob.type === "")
println("PASS");
else
println("FAIL");
});
</script>