blob: b6c202b2aabca3572fc45ed03e0b779086689bc5 [file] [log] [blame]
<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runRepaintAndPixelTest()">
<script xlink:href="../resources/text-based-repaint.js"/>
<defs>
<clipPath id="oldclip" clipPathUnits="userSpaceOnUse">
<path transform="scale(.5)" d="M 0 0 l 200 0 l 0 200 l -200 0 Z"/>
</clipPath>
</defs>
<script>
function repaintTest() {
document.getElementsByTagName("clipPath")[0].setAttribute("id", "newclip");
}
</script>
<g clip-path="url(#newclip)">
<rect x="0" y="0" width="200" height="200" fill="red"/>
<rect x="0" y="0" width="100" height="100" fill="green"/>
</g>
</svg>