Newer
Older
minerva / Tests / LibWeb / Text / input / FileAPI / Blob-empty-constructor.html
@minerva minerva on 13 Jul 233 bytes Initial commit
<script src="../include.js"></script>
<script>
    test(() => {
        const blob = new Blob;
        if (blob.size === 0 && blob.type === "")
            println("PASS");
        else
            println("FAIL");
    });
</script>