Bug 767337; crash test. r=roc

This commit is contained in:
Nicholas Cameron 2012-07-18 15:04:15 -04:00
parent 7729101eae
commit 8564f0e282
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<body>
<canvas id="c" width="500" height="1000">
</canvas>
<script>
var ctxt = document.getElementById('c').getContext('2d');
for (var k = 0; k < 100; ++j) {
for (var j = 0; j < 10; ++j) {
for (var i = 0; i < 1000; ++i) {
gradient = ctxt.createLinearGradient(0,0,200,i);
gradient.addColorStop(0,'black');
gradient.addColorStop(1,'rgba(0, 255*k/100, 0, 0.1)');
ctxt.fillStyle = gradient;
ctxt.fillRect(j*50, 2*i, 50, 2);
}
}
}
</script>
</body>
</html>

View File

@ -10,3 +10,4 @@ load 746813-1.html
# this test crashes in a bunch places still
#load 745818-large-source.html
load 743499-negative-size.html
load 767337-1.html