18 lines
349 B
HTML
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>
|