blob: 600420bc580e2637aeb0290e83cceff0a27bcd23 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<svg>
<filter id="f" x="0" y="0" width="1" height="1" style="color: red"
color-interpolation-filters="sRGB">
<feFlood flood-color="currentcolor"/>
</filter>
<rect width="100" height="100" fill="orange" filter="url(#f)"/>
</svg>
<script>
runAfterLayoutAndPaint(function() {
document.getElementById('f').style.color = 'green';
}, true);
</script>