gecko-dev/layout/base/crashtests/1153716.html
Jesse Ruderman 161346d545 Bug 1153716 - Add crashtest. r=me
--HG--
extra : rebase_source : 943a3398522c8e0cadfd8bad6c036ace9ca57120
2017-10-20 08:36:11 -04:00

20 lines
322 B
HTML

<!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>