Bug 746849 - Add crashtest. r=me

This commit is contained in:
Jesse Ruderman 2017-10-25 21:03:15 -04:00
parent 41d58ad1d4
commit 052e25b132
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var ctx = document.querySelector("canvas").getContext('2d');
ctx.rect(1, 2, 3, 4);
ctx.fill();
for (var i = 0; i < 48; ++i) {
ctx.scale(100, 100);
}
ctx.isPointInPath(5, 6);
}
</script>
</head>
<body onload="boom();"><canvas width="100" height="100"></canvas></body>
</html>

View File

@ -110,6 +110,7 @@ load 746495.html
load 746497.html
load 746844.html
load 746847.html
load 746849.html
load 766452-1.html
load 766452-2.html
load 768079-1.html