summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/576612-1.html
blob: 04f993e780047886e86aeb8f4af13b8ea3d1b6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{

  var v = document.getElementById("v");
  v.src = "data:text/plain,_";
  document.documentElement.appendChild(v);

}
</script>
</head>
<body onload="boom();"><video id="v" src="data:video/ogg;codecs=&quot;theora,vorbis&quot;,1"></video></body>
</html>