1
0
Fork 0
firefox/netwerk/test/browser/res_object.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
349 B
HTML

<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
<html>
<body>
<p>Dummy Page</p>
<script>
let foo = async () => {
let url = "https://example.com/browser/netwerk/test/browser/res_img.png";
await fetch(url, { mode: "no-cors" });
}
foo();
</script>
</body>
</html>