Backed out 35 changesets (bug 941158, bug 972518, bug 959520, bug 986063, bug 948895...
[gecko.git] / content / canvas / crashtests / 745818-large-source.html
bloba5be76be06ecb36f284582ce53c788813d031464
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var a = document.getElementById("a");
9 var b = document.getElementById("b");
10 a.getContext('2d').createPattern(b, 'no-repeat');
13 </script>
14 </head>
16 <body onload="boom();">
17 <canvas id="a" width="61" height="26"></canvas>
18 <canvas id="b" width="611" height="439807"></canvas>
19 </body>
21 </html>