Bug 1190705 - Add crashtest for canvas 2d. r=Bas

This commit is contained in:
Lee Salzman 2015-08-05 21:17:14 -04:00
parent 01275d0e89
commit 2dfa9e7cc7
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.rotate(1e308);
ctx.fillText("A", 1, 1);
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -23,3 +23,5 @@ load 916128-1.html
load 934939-1.html
load 1099143-1.html
load 1183363.html
load 1190705.html