Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: LayoutTests/svg/custom/use-crash-using-children-before-destroy.svg

Issue 7396010: Merge 91005 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-crash-using-children-before-destroy-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k"> 1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <text>PASS if no crash/assert</text> 2 <text>PASS if no crash/assert</text>
3 <g id="outer"><use id="a"></use></g> 3 <g id="outer"><use id="a"></use></g>
4 <use id="b" xlink:href="#outer" /> 4 <use id="b" xlink:href="#outer" />
5 <script><![CDATA[ 5 <script><![CDATA[
6 var useobj = document.getElementById("b").instanceRoot; 6 var useobj = document.getElementById("b").instanceRoot;
7 7
8 function test() { 8 function test() {
9 var elem = document.getElementById("b"); 9 var elem = document.getElementById("b");
10 elem.parentNode.removeChild(elem); 10 elem.parentNode.removeChild(elem);
11 } 11 }
12 test(); 12 test();
13 13
14 document.getElementById("a").appendChild(document.createElement("g")); 14 document.getElementById("a").appendChild(document.createElement("g"));
15 15
16 if (window.layoutTestController) { 16 if (window.layoutTestController) {
17 layoutTestController.dumpAsText(); 17 layoutTestController.dumpAsText();
18 } 18 }
19 ]]></script> 19 ]]></script>
20 </svg> 20 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-crash-using-children-before-destroy-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698