blob: a2a4e6c7c127baf49cb95180d99cd9b6748edb7c [file] [edit]
<!DOCTYPE html>
<html>
<head>
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
</head>
<body onload="runRepaintTest()">
<svg style="position: absolute; top: 0px; left: 0px; width: 500px; height: 200px">
<rect id="target" transform="scale(0.001)" x="50" y="50" width="100" height="100" fill="#080"/>
</svg>
<script>
function repaintTest() {
document.getElementById("target").setAttribute('transform', 'scale(1)');
}
</script>
</body>
</html>