mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Thanks to Oscar Uribe for the report. Co-Authored-By: Jelle Raaijmakers <jelle@ladybird.org>
14 lines
314 B
HTML
14 lines
314 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(async done => {
|
|
try {
|
|
await fetch(`file://${window.location.pathname}`);
|
|
println('FAIL: no exception was thrown');
|
|
} catch (e) {
|
|
println(e);
|
|
}
|
|
done();
|
|
});
|
|
</script>
|