OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <svg> |
| 3 <path id="path" d="M0,20h100" fill="none"/> |
| 4 <text><textPath xlink:href="#path">FAIL</textPath></text> |
| 5 </svg> |
2 <script src="../../resources/run-after-layout-and-paint.js"></script> | 6 <script src="../../resources/run-after-layout-and-paint.js"></script> |
3 <svg> | |
4 <rect width="100" height="100" fill="green" style="transform: translate(100px,
100px)"/> | |
5 </svg> | |
6 <script> | 7 <script> |
7 runAfterLayoutAndPaint(function() { | 8 runAfterLayoutAndPaint(function() { |
8 document.querySelector('rect').style.transform = 'none'; | 9 document.querySelector('path').id = ''; |
9 }, true); | 10 }, true); |
10 </script> | 11 </script> |
OLD | NEW |