blob: 990ac4af46d591c26090fa50073847993edbb8df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<script>
function boom()
{
audio1 = document.createElement("audio");
(audio1).appendChild(document.createElement("source"));
(audio1).appendChild(document.createElement("source"));
setTimeout(function() {
audio2 = document.createElement("audio");
audio2.appendChild(audio1);
}, 100);
}
</script>
<body onload="boom();"></body>
|