mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
272 B
HTML
19 lines
272 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
s = document.createElement("span");
|
|
a = document.createElement("audio");
|
|
a['src'] = "javascript:4";
|
|
a['loopend'] = 3;
|
|
s.appendChild(a);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|