blob: 8097415d173c74c486c47040b0a3e3466be47c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|