8 lines
212 B
HTML
8 lines
212 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
window.addEventListener("load", () => {
|
|
let a = new UIEvent("load", {"bubbles": true})
|
|
try { document.doctype.dispatchEvent(a) } catch (e) {}
|
|
document.write("<audio>")
|
|
})
|
|
</script>
|