layout/reftests/svg/paint-order-03.svg

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/svg/paint-order-03.svg	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,20 @@
     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 +  <defs>
    1.13 +    <marker id="m" markerWidth="40" markerHeight="40" refX="20" refY="20" markerUnits="userSpaceOnUse">
    1.14 +      <circle cx="20" cy="20" r="16" fill="fuchsia"/>
    1.15 +    </marker>
    1.16 +  </defs>
    1.17 +
    1.18 +  <g fill="gold" stroke="black" stroke-width="8" style="marker: url(#m)" paint-order="markers stroke fill">
    1.19 +    <path d="M 50,50 h 100 v 100 h -50 z"/>
    1.20 +    <line x1="200" y1="50" x2="300" y2="150"/>
    1.21 +    <polygon points="50,200 50,300 200,200 200,300"/>
    1.22 +  </g>
    1.23 +</svg>

mercurial