mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-22 17:01:54 +00:00
15 lines
390 B
HTML
15 lines
390 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(done => {
|
|
const xhr = new XMLHttpRequest();
|
|
const data = "PASS";
|
|
const url = URL.createObjectURL(new Blob([data]));
|
|
xhr.open("GET", url);
|
|
xhr.onload = function () {
|
|
println(xhr.responseText);
|
|
done();
|
|
};
|
|
xhr.send();
|
|
});
|
|
</script>
|