mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 767337; crash test. r=roc
This commit is contained in:
parent
7729101eae
commit
8564f0e282
21
content/canvas/crashtests/767337-1.html
Normal file
21
content/canvas/crashtests/767337-1.html
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user