- From: Dirk Schulze <vbs85@gmx.de>
 - Date: Fri, 21 Jan 2011 14:21:03 +0100
 - To: W3C SVG Comments List <www-svg@w3.org>
 
Hi,
I suggest to modify http://dev.w3.org/SVG/profiles/1.1F2/test/svg/painting-marker-07-f.svg a bit. To test the complete text about display in the spec[1], the second marker should have a display="inherit", since the default is 'inline':
    <defs>
        <marker id="testMarker" markerWidth="100" markerHeight="100" display="none">
            <path d="M 0 0 L 200 200 L 0 150 z" fill="green" />
        </marker>
        <g display="none">
          <marker id="testMarker2" markerWidth="100" markerHeight="100" display="inherit">
            <path d="M 0 0 L 200 200 L 0 150 z" fill="green" />
          </marker>
        </g>
    </defs>
Cheers
Dirk
[1] http://www.w3.org/TR/SVG/painting.html#MarkerElement
Received on Friday, 21 January 2011 13:21:41 UTC