OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | |
3 <script src=../../resources/ahem.js></script> | |
4 <script> | |
5 window.onload = runRepaintTest; | |
6 | |
7 function repaintTest() { | |
8 var text = document.getElementsByTagName("text")[0]; | |
9 text.style.transform = 'translate(0px, 50px)'; | |
10 } | |
11 </script> | |
12 <body> | |
13 <svg width="400" height="400" version="1.1" xmlns="http://www.w3.org/2000/svg"> | |
14 <text y="80" fill="green" font-size="100" font-family="Ahem">Test</text> | |
15 </svg> | |
16 </body> | |
OLD | NEW |