| OLD | NEW |
| 1 <svg version="1.1" xmlns="http://www.w3.org/2000/svg"> | 1 <svg version="1.1" xmlns="http://www.w3.org/2000/svg"> |
| 2 <script> | 2 <script> |
| 3 function runTest() { | 3 function runTest() { |
| 4 g.offsetTop; | 4 g.offsetTop; |
| 5 g.removeChild(g.firstChild); | 5 g.removeChild(g.firstChild); |
| 6 if (g.firstChild) | 6 if (g.firstChild) |
| 7 setTimeout(runTest(),0); | 7 setTimeout(runTest(),0); |
| 8 else | 8 else |
| 9 location.reload(); | 9 location.reload(); |
| 10 } | 10 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 } | 30 } |
| 31 } | 31 } |
| 32 </script> | 32 </script> |
| 33 <g id="g1"> | 33 <g id="g1"> |
| 34 <cursor id="c1"></cursor> | 34 <cursor id="c1"></cursor> |
| 35 <g cursor="url(#c1)" id="g2"></g> | 35 <g cursor="url(#c1)" id="g2"></g> |
| 36 <cursor id="c2"></cursor> | 36 <cursor id="c2"></cursor> |
| 37 <text id="t1" x="20" y="20"></text> | 37 <text id="t1" x="20" y="20"></text> |
| 38 </g> | 38 </g> |
| 39 </svg> | 39 </svg> |
| OLD | NEW |