blob: 58858b3518e8621625019eaf275f9197c8d15def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom(){
let root = document.documentElement,
inp = document.createElement("input"),
aud = document.createElement("audio"),
vid = document.createElement("video");
inp.type = "image";
document.body.appendChild(inp);
document.body.appendChild(aud);
document.body.appendChild(vid);
root.style.columnWidth = "0px";
setTimeout(function(){
inp.style.display = "contents";
setTimeout(function(){
inp.remove();
inp.appendChild(vid);
setTimeout(function(){
root.style.strokeWidth = "0px";
}, 10);
}, 10);
}, 10);
}
addEventListener("DOMContentLoaded", boom);
</script>
</head>
<body></body>
</html>
|