Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <svg xmlns="http://www.w3.org/2000/svg"> | |
| 3 <text><tspan><tspan>PASS</tspan></tspan><a></a></text> | |
| 4 </svg> | |
| 5 <script> | |
| 6 if (window.testRunner) { | |
| 7 testRunner.dumpAsText(); | |
| 8 testRunner.waitUntilDone(); | |
| 9 } | |
| 10 var e = document.querySelector('a'); | |
| 11 e.appendChild(document.createElement('rb')); | |
| 12 | |
| 13 window.onload = function() { | |
| 14 setTimeout(function() { | |
| 15 if (window.testRunner) | |
| 16 testRunner.notifyDone(); | |
| 17 }, 0); | |
| 18 }; | |
| 19 </script> | |
| OLD | NEW |