1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/svg/paint-order-01.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 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 + <title>Test that the paint-order property works</title> 1.10 + <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=828805 --> 1.11 + 1.12 + <g fill="gold" stroke="black" stroke-width="8"> 1.13 + <circle cx="50" cy="50" r="20"/> 1.14 + <circle cx="50" cy="100" r="20" style="paint-order: stroke fill markers"/> 1.15 + <circle cx="50" cy="150" r="20" paint-order="stroke fill markers"/> 1.16 + <circle cx="50" cy="200" r="20" paint-order="stroke markers fill"/> 1.17 + <circle cx="50" cy="250" r="20" paint-order="stroke fill"/> 1.18 + <circle cx="50" cy="300" r="20" paint-order="stroke"/> 1.19 + <circle cx="50" cy="350" r="20" paint-order="normal"/> 1.20 + </g> 1.21 +</svg>