mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
Everywhere: Fix even more typos
This commit is contained in:
committed by
Jelle Raaijmakers
parent
77f6edaf71
commit
1c01e183b7
Notes:
github-actions[bot]
2025-08-27 06:49:03 +00:00
Author: https://github.com/szepeviktor Commit: https://github.com/LadybirdBrowser/ladybird/commit/1c01e183b75 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5974 Reviewed-by: https://github.com/gmta ✅
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<script src="../include.js"></script>
|
||||
<script>
|
||||
asyncTest(async (done) => {
|
||||
const blob = new Blob(["This is some data to be read! 🦬"]);
|
||||
const arrayBuffer = await blob.arrayBuffer();
|
||||
const string = new TextDecoder().decode(new Uint8Array(arrayBuffer));
|
||||
if (string === "This is some data to be read! 🦬")
|
||||
println("PASS");
|
||||
else
|
||||
println("FAIL");
|
||||
done();
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user