Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <html reftest-zoom="1.5"> |
michael@0 | 2 | <!-- Test to make sure svg:image is painted correctly when its containing SVG |
michael@0 | 3 | is included inline in a zoomed webpage and it has a transformation |
michael@0 | 4 | applied, as is often used for SVG sprites. --> |
michael@0 | 5 | <body style="margin: 0"> |
michael@0 | 6 | <svg xmlns="http://www.w3.org/2000/svg" |
michael@0 | 7 | xmlns:xlink="http://www.w3.org/1999/xlink" |
michael@0 | 8 | style="shape-rendering: crispEdges"> |
michael@0 | 9 | <clipPath id="clip"><rect x="0" y="0" width="20" height="20"/></clipPath> |
michael@0 | 10 | <!-- Translate and clip-path are used to pull a sprite out of the otherwise red image. --> |
michael@0 | 11 | <g clip-path="url(#clip)"> |
michael@0 | 12 | <image xlink:href="sprite.svg" width="200" height="200" transform="translate(0, -100)"/> |
michael@0 | 13 | </g> |
michael@0 | 14 | </svg> |
michael@0 | 15 | </body> |
michael@0 | 16 | </html> |