OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../resources/run-after-layout-and-paint.js"></script> |
2 <svg> | 3 <svg> |
3 <path d="M0,20h100" fill="none"/> | 4 <text y="20">Foo<tspan> </tspan> bar</text> |
4 <text><textPath xlink:href="#path">PASS</textPath></text> | |
5 </svg> | 5 </svg> |
6 <script src="../../resources/run-after-layout-and-paint.js"></script> | |
7 <script> | 6 <script> |
8 runAfterLayoutAndPaint(function() { | 7 runAfterLayoutAndPaint(function() { |
9 document.querySelector('path').id = 'path'; | 8 document.querySelector('tspan').firstChild.remove(); |
10 }, true); | 9 }, true); |
11 </script> | 10 </script> |
OLD | NEW |