gfx/tests/crashtests/893572-3.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/tests/crashtests/893572-3.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,44 @@
     1.4 +<script>
     1.5 +o0 = document.createElement('canvas');
     1.6 +(document.body || document.documentElement).appendChild(o0);
     1.7 +o1 = o0.getContext('2d');
     1.8 +
     1.9 +o1.beginPath();
    1.10 +o1.moveTo(8,34.323262543409996);
    1.11 +o1.lineTo(1.7976931348623157e+308,34.323262543409996);
    1.12 +o1.arcTo(1.7976931348623157e+308, 150, 20, 150, 70);
    1.13 +o1.stroke();
    1.14 +
    1.15 +o1.beginPath();
    1.16 +o1.moveTo(8,34.323262543409996);
    1.17 +o1.lineTo(-1.7976931348623157e+308,34.323262543409996);
    1.18 +o1.arcTo(70, 1.7976931348623157e+308, 150, 20, 150);
    1.19 +o1.stroke();
    1.20 +
    1.21 +o1.beginPath();
    1.22 +o1.moveTo(34.323262543409996, 8);
    1.23 +o1.lineTo(34.323262543409996, 1.7976931348623157e+308);
    1.24 +o1.arcTo(150, 70, 1.7976931348623157e+308, 150, 20); 
    1.25 +o1.stroke();
    1.26 +
    1.27 +o1.beginPath();
    1.28 +o1.moveTo(34.323262543409996, 8);
    1.29 +o1.lineTo(34.323262543409996, -1.7976931348623157e+308);
    1.30 +o1.arcTo(20, 150, 70,1.7976931348623157e+308, 150); 
    1.31 +o1.stroke();
    1.32 +
    1.33 +o1.beginPath();
    1.34 +o1.moveTo(20, 20);
    1.35 +o1.lineTo(100, 20);
    1.36 +o1.arcTo(150, 20, 150, 70, 1.7976931348623157e+308);
    1.37 +o1.lineTo(150, 120);
    1.38 +o1.stroke();
    1.39 +
    1.40 +o1.beginPath();
    1.41 +o1.moveTo(20, 20);
    1.42 +o1.lineTo(100, 20);
    1.43 +o1.arcTo(150, 20, 150, 70, -1.7976931348623157e+308);
    1.44 +o1.lineTo(150, 120);
    1.45 +o1.stroke();
    1.46 +
    1.47 +</script>

mercurial