Bug 710149 - Add crashtest.

This commit is contained in:
Ryan VanderMeulen 2015-10-25 00:06:23 -04:00
parent 635ac2e39d
commit 0c8e9947e3
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<script>
function boom()
{
var d = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
d.style.setProperty("-moz-transform", "translate(0pt, 10px)", "");
d.style.setProperty("opacity", "0.8", "");
d.style.setProperty("background-color", "gray", "");
var c = document.createElementNS("http://www.w3.org/1999/xhtml", "canvas");
(d).appendChild(c);
(document.body).appendChild(d);
c.getContext("2d");
}
</script>
<body onload="setTimeout(boom, 100);"></body>

View File

@ -97,6 +97,7 @@ load 633322-1.html
load 665218.html load 665218.html
load 686190-1.html load 686190-1.html
load 693143-1.html load 693143-1.html
load 710149-1.html
load 768079-1.html load 768079-1.html
load 783041-1.html load 783041-1.html
load 783041-2.html load 783041-2.html