Bug 495546 - Add crashtest.

This commit is contained in:
Ryan VanderMeulen 2015-10-24 15:03:19 -04:00
parent ad079c17f0
commit 0bd9167bf7
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
var video = document.createElement("video");
var source = document.createElement("source");
source.setAttributeNS(null, "src", "http://127.0.0.1/");
video.appendChild(source);
document.body.appendChild(video);
setTimeout(function() { document.body.removeChild(video); }, 20);
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -23,6 +23,7 @@ load 468562-1.html
load 468562-2.html load 468562-2.html
load 494225.html load 494225.html
load 495543.svg load 495543.svg
load 495546-1.html
load 504183-1.html load 504183-1.html
load 515829-1.html load 515829-1.html
load 515829-2.html load 515829-2.html