blob: aa650f692ef33db19b98b139c482e5bb780c5922 [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" patternContentUnits="objectBoundingBox">
<rect id="patternContent" x="0" y="0" width="1" height="1" 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', '.5');
document.getElementById("patternContent").setAttribute('height', '.5');
}
</script>
</body>
</html>