<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100" style="position: static" onload="runRepaintAndPixelTest()">
<script xlink:href="../resources/text-based-repaint.js"/>
<rect width="100" height="100" fill="red" />
<rect id="rect" width="1" height="1" fill="green" style="position: absolute" />
<script>
<![CDATA[
function repaintTest() {
var rect = document.getElementById('rect');
rect.setAttribute("width", "100");
rect.setAttribute("height", "100");
}
]]>
</script>
</svg>