Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 description("Test that no crash occurs when a SVG filter is deleted that was ref erenced by a deleted HTML element."); | 1 description("Test that no crash occurs when a SVG clippath is deleted that was r eferenced by a deleted HTML element."); |
| 2 | 2 |
| 3 html = document.getElementById('html'); | 3 html = document.getElementById('html'); |
|
pdr.
2014/08/04 17:06:32
I don't think this test works because the animatio
Shanmuga Pandi
2014/08/06 14:51:34
Done.
| |
| 4 html.parentNode.removeChild(html); | 4 html.parentNode.removeChild(html); |
| 5 svg = document.getElementById('svg'); | 5 svg = document.getElementById('svg'); |
| 6 svg.parentNode.removeChild(svg); | 6 svg.parentNode.removeChild(svg); |
| 7 | 7 |
| 8 successfullyParsed = true; | 8 successfullyParsed = true; |
| OLD | NEW |