mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 200 200">
|
||
|
<!-- Bug 544809 - nsSVGPatternFrame::GetPatternWithAttr and callers should
|
||
|
take account of SMIL animation.
|
||
|
|
||
|
This test is a continuation of anim-pattern-attr-presence-01.svg but is
|
||
|
separated because it currently fails due to bug 621651. Once that bug is
|
||
|
resolved the tests in this file should be merged into
|
||
|
anim-pattern-attr-presence-01.svg
|
||
|
-->
|
||
|
<!-- 1. x, y: defaults to 0 -->
|
||
|
<!-- Currently broken by bug 621651 -->
|
||
|
<defs>
|
||
|
<pattern xlink:href="#xyRef" id="xy"/>
|
||
|
<pattern id="xyRef" width="1" height="1">
|
||
|
<set attributeName="x" to="0.1"/>
|
||
|
<set attributeName="y" to="-0.1"/>
|
||
|
<rect width="50" height="50" fill="blue"/>
|
||
|
<rect x="50" width="50" height="50" fill="red"/>
|
||
|
<rect y="50" width="50" height="50" fill="red"/>
|
||
|
<rect x="50" y="50" width="50" height="50" fill="blue"/>
|
||
|
</pattern>
|
||
|
</defs>
|
||
|
<g>
|
||
|
<rect width="100" height="100" stroke="black" fill="url(#xy)"/>
|
||
|
<g transform="translate(100)">
|
||
|
<rect width="100" height="100" stroke="black" fill="url(#xyRef)"/>
|
||
|
</g>
|
||
|
</g>
|
||
|
<!-- 2. width, height: defaults to 0 (disables rendering) -->
|
||
|
<!-- Currently broken by bug 621651 -->
|
||
|
<defs>
|
||
|
<pattern xlink:href="#widthHeightRef" id="widthHeight"/>
|
||
|
<pattern id="widthHeightRef">
|
||
|
<set attributeName="width" to="1"/>
|
||
|
<set attributeName="height" to="1"/>
|
||
|
<rect width="50" height="50" fill="blue"/>
|
||
|
<rect x="50" width="50" height="50" fill="red"/>
|
||
|
<rect y="50" width="50" height="50" fill="red"/>
|
||
|
<rect x="50" y="50" width="50" height="50" fill="blue"/>
|
||
|
</pattern>
|
||
|
</defs>
|
||
|
<g transform="translate(0 100)">
|
||
|
<rect width="100" height="100" stroke="black" fill="url(#widthHeight)"/>
|
||
|
<g transform="translate(100)">
|
||
|
<rect width="100" height="100" stroke="black"
|
||
|
fill="url(#widthHeightRef)"/>
|
||
|
</g>
|
||
|
</g>
|
||
|
<!-- If adding more tests here, be sure to update the viewBox on the root svg
|
||
|
element -->
|
||
|
</svg>
|