Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k"> | |
| 2 <symbol id="a"/> | |
| 3 <use id="b" xlink:href="#a"/> | |
| 4 <script> | |
| 5 if (window.testRunner) | |
| 6 testRunner.dumpAsText(); | |
| 7 b = document.getElementById('b'); | |
| 8 b.href.baseVal = "#a"; | |
| 9 onload = function() { | |
| 10 document.getElementById("a").remove(); | |
| 11 b.setAttribute("width", 100); | |
| 12 }; | |
| 13 </script> | |
| 14 <text y="20">PASS: The text is displayed and the file did not trigger a crash. </text> | |
| 15 </svg> | |
| OLD | NEW |