blob: 7659a928e8794f5d2a75f0594a346182ddf5a554 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<svg width="400" height="400">
<path pathLength="800" d="M100,100h100v100h-100z" fill="none"
stroke="blue" stroke-width="20" stroke-dasharray="25"/>
</svg>
<script>
runAfterLayoutAndPaint(function() {
document.querySelector('path').setAttribute('pathLength', 200);
}, true);
</script>