| <!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> |