Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | <!-- |
michael@0 | 2 | Any copyright is dedicated to the Public Domain. |
michael@0 | 3 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 4 | --> |
michael@0 | 5 | <svg xmlns="http://www.w3.org/2000/svg"> |
michael@0 | 6 | <title>Test that the paint-order property works</title> |
michael@0 | 7 | <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=828805 --> |
michael@0 | 8 | |
michael@0 | 9 | <g fill="gold" stroke="black" stroke-width="8"> |
michael@0 | 10 | <circle cx="50" cy="50" r="20"/> |
michael@0 | 11 | <circle cx="50" cy="100" r="20" style="paint-order: stroke fill markers"/> |
michael@0 | 12 | <circle cx="50" cy="150" r="20" paint-order="stroke fill markers"/> |
michael@0 | 13 | <circle cx="50" cy="200" r="20" paint-order="stroke markers fill"/> |
michael@0 | 14 | <circle cx="50" cy="250" r="20" paint-order="stroke fill"/> |
michael@0 | 15 | <circle cx="50" cy="300" r="20" paint-order="stroke"/> |
michael@0 | 16 | <circle cx="50" cy="350" r="20" paint-order="normal"/> |
michael@0 | 17 | </g> |
michael@0 | 18 | </svg> |