1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/path-05.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/publicdomain/zero/1.0/ 1.7 +--> 1.8 +<svg xmlns="http://www.w3.org/2000/svg" 1.9 + shape-rendering="crispEdges"> 1.10 + 1.11 + <title>Testcase for path arc handling</title> 1.12 + 1.13 + <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=657862 --> 1.14 + 1.15 + <rect width="100%" height="100%" fill="lime"/> 1.16 + 1.17 + <!-- Check that arc paints over entire circle: --> 1.18 + 1.19 + <circle cx="100" cy="100" r="79" fill="red"/> 1.20 + <path d="M20,100 A80,80 0,0,1 180,100 A80,80 0,0,1 20,100" fill="lime"/> 1.21 + 1.22 + <!-- Check that arc does not paint outside circle: --> 1.23 + 1.24 + <g transform="translate(200,0)"> 1.25 + <path d="M20,100 A80,80 0,0,1 180,100 A80,80 0,0,1 20,100" fill="red"/> 1.26 + <circle cx="100" cy="100" r="81" fill="lime"/> 1.27 + </g> 1.28 + 1.29 +</svg>