blob: a571ee2103a7c2c4fda2a58f183c2453b59d4a53 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<script>
window.testIsAsync = true;
window.onload = runRepaintTest;
function repaintTest() {
runAfterLayoutAndPaint(function() {
document.getElementsByTagName('rect')[0].style.height = "100px";
if (window.testRunner)
finishRepaintTest();
});
};
</script>
<svg width="200" height="200">
<rect width="100" height="200" fill="blue" rx="3"/>
</svg>