blob: e0288c4ccbcc4806e1364be4de7bf84ef0af4c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom() {
let r = new Request("#a#a");
setTimeout(function(){
r.formData();
setTimeout(function(){
r.blob();
}, 0);
}, 0);
}
addEventListener("DOMContentLoaded", boom);
</script>
</head>
</html>
|