blob: f09165892f5220b42fcba6a4dde7551e2f6a7b20 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<svg>
<text y="20">
foo
<tspan dx="50">baz</tspan>
</text>
</svg>
<script>
runAfterLayoutAndPaint(function() {
let text = document.querySelector('tspan').previousSibling;
text.textContent = text.textContent + "bar";
}, true);
</script>