blob: 6a2cd591e4628b094ae3ee4c39cd6ceff07101b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var td = document.createElement("td");
document.body.appendChild(td);
var audio = document.createElement("audio");
audio.controls = true;
td.appendChild(audio);
}
</script>
</head>
<body onload="boom();"></body>
</html>
|