layout/reftests/svg/smil/anim-pattern-attr-presence-02-ref.svg

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <svg xmlns="http://www.w3.org/2000/svg"
michael@0 2 xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 200 200">
michael@0 3 <!-- 1. x, y -->
michael@0 4 <defs>
michael@0 5 <pattern id="xy" width="1" height="1" x="0.1" y="-0.1">
michael@0 6 <rect width="50" height="50" fill="blue"/>
michael@0 7 <rect x="50" width="50" height="50" fill="red"/>
michael@0 8 <rect y="50" width="50" height="50" fill="red"/>
michael@0 9 <rect x="50" y="50" width="50" height="50" fill="blue"/>
michael@0 10 </pattern>
michael@0 11 </defs>
michael@0 12 <g>
michael@0 13 <rect width="100" height="100" stroke="black" fill="url(#xy)"/>
michael@0 14 <g transform="translate(100)">
michael@0 15 <rect width="100" height="100" stroke="black" fill="url(#xy)"/>
michael@0 16 </g>
michael@0 17 </g>
michael@0 18 <!-- 2. width, height -->
michael@0 19 <defs>
michael@0 20 <pattern id="widthHeight" width="1" height="1">
michael@0 21 <rect width="50" height="50" fill="blue"/>
michael@0 22 <rect x="50" width="50" height="50" fill="red"/>
michael@0 23 <rect y="50" width="50" height="50" fill="red"/>
michael@0 24 <rect x="50" y="50" width="50" height="50" fill="blue"/>
michael@0 25 </pattern>
michael@0 26 </defs>
michael@0 27 <g transform="translate(0 100)">
michael@0 28 <rect width="100" height="100" stroke="black" fill="url(#widthHeight)"/>
michael@0 29 <g transform="translate(100)">
michael@0 30 <rect width="100" height="100" stroke="black" fill="url(#widthHeight)"/>
michael@0 31 </g>
michael@0 32 </g>
michael@0 33 <!-- If adding more tests here, be sure to update the viewBox on the root svg
michael@0 34 element -->
michael@0 35 </svg>

mercurial