| <!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> |
| <clipPath id="clip" clipPathUnits="objectBoundingBox"> |
| <rect id="clipContent" x="0.5" y="0.5" width="0.5" height="0.5"></rect> |
| </clipPath> |
| </defs> |
| <rect id="target" x="0" y="0" width="100" height="100" clip-path="url(#clip)" fill="red"/> |
| </svg> |
| <script> |
| function repaintTest() { |
| document.getElementById("clipContent").setAttribute('x', '0'); |
| document.getElementById("clipContent").setAttribute('y', '0'); |
| } |
| </script> |
| </body> |
| </html> |