mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-10 19:11:54 +00:00
13 lines
370 B
HTML
13 lines
370 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(async (done) => {
|
|
const blob = new Blob(["This is some data to be read! 🦬"]);
|
|
const text = await blob.text();
|
|
if (text === "This is some data to be read! 🦬")
|
|
println("PASS");
|
|
else
|
|
println("FAIL");
|
|
done();
|
|
});
|
|
</script>
|