blob: 59a50168d825c385e90662d0a84df7dc9c351da3 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<svg>
<linearGradient id="f">
<stop stop-color="green"/>
</linearGradient>
<linearGradient id="f">
<stop stop-color="inherit"/>
</linearGradient>
<rect width="100" height="100" fill="url(#f) orange"/>
</svg>
<script>
runAfterLayoutAndPaint(function() {
document.querySelectorAll('lineargradient')[1].style.stopColor = 'red';
}, true);
</script>