blob: 84c3a1398d9a442a4f02c81246108238b7a8abb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE HTML>
<html>
<head>
<script>
async function fetch_status() {
let response = await fetch('this_file_does_not_exist.txt');
return response.status;
}
</script>
</head>
<body>
</body>
</html>
|