<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<svg>
<rect width="100" height="100" fill="green" style="transform: translate(100px, 100px)"/>
</svg>
<script>
runAfterLayoutAndPaint(function() {
document.querySelector('rect').style.transform = 'none';
}, true);
</script>