OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <svg> |
| 3 <text><tspan>PASS</tspan><tspan><a><ellipse/></a></tspan></text> |
| 4 </svg> |
| 5 <script> |
| 6 if (window.testRunner) { |
| 7 testRunner.dumpAsText(); |
| 8 testRunner.waitUntilDone(); |
| 9 } |
| 10 window.onload = function() { |
| 11 var e = document.querySelector('ellipse'); |
| 12 e.parentNode.insertBefore(document.createElement('span'), e); |
| 13 } |
| 14 |
| 15 window.onload = function() { |
| 16 setTimeout(function() { |
| 17 if (window.testRunner) |
| 18 testRunner.notifyDone(); |
| 19 }, 0); |
| 20 }; |
| 21 </script> |
OLD | NEW |