mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-11 03:21:53 +00:00
11 lines
249 B
HTML
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>
|