blob: e989a296e624e1e4fee885fd83429916ce29020f [file] [edit]
<!DOCTYPE html> <!-- webkit-test-runner [ LayerBasedSVGEngineEnabled=true ] -->
<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">
<defs>
<pattern id="pattern" width="50" height="50" patternUnits="userSpaceOnUse">
<rect id="patternContent" x="0" y="0" width="100" height="100" fill="green"></rect>
</pattern>
</defs>
<rect id="target" x="0" y="0" width="100" height="100" fill="url(#pattern)"/>
</svg>
<script>
function repaintTest() {
document.getElementById("patternContent").setAttribute('x', '25');
document.getElementById("patternContent").setAttribute('y', '25');
document.getElementById("patternContent").setAttribute('width', '50');
document.getElementById("patternContent").setAttribute('height', '50');
}
</script>
</body>
</html>