blob: a4dd9990cae3837c0b1e59934c7e111ff3953344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<head>
<script>
document.addEventListener('DOMContentLoaded', () => {
const xhr = new XMLHttpRequest()
xhr.open('G', '', false)
xhr.send()
window.ac = new AudioContext()
})
</script>
</head>
</html>
|