Tests/LibWeb: Move existing Fetch tests in under the Fetch folder

This commit is contained in:
Kenneth Myhra 2024-07-22 14:01:35 +02:00 committed by Andreas Kling
commit 92f6336fe8
Notes: github-actions[bot] 2024-07-23 07:03:29 +00:00
6 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
asyncTest(async done => {
try {
await fetch("about:srcdoc", { signal: AbortSignal.timeout(0) });
} finally {
println("PASS (didn't crash)");
done();
}
});
</script>