зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
496 B
XML
15 строки
496 B
XML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" >
|
|
|
|
<title>Testcase for rect with unsupported rx and ry</title>
|
|
|
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=554091 -->
|
|
|
|
<rect x="0" y="0" width="100%" height="100%" fill="red"/>
|
|
<rect x="0" y="0" width="50%" height="100%" rx="-1" fill="lime" />
|
|
<rect x="50%" y="0" width="50%" height="100%" ry="-1" fill="lime" />
|
|
</svg>
|