ladybird/Tests/LibWeb/Text/input/FileAPI/Blob-empty-constructor.html

12 lines
249 B
HTML
Raw Permalink Normal View History

2025-03-18 15:28:35 -03:00
<!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>