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

Side by Side Diff: LayoutTests/fast/ruby/ruby-base-merge-block-children-crash.html

Issue 8044030: Merge 95924 - Source/WebCore: Issues with merging block children of a ruby (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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/platform/mac/fast/ruby/ruby-base-merge-block-children-crash-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html style="font: 1em/1 Ahem, sans-serif;"> 2 <html style="font: 1em/1 Ahem, sans-serif;">
3 <body> 3 <body>
4 <ruby> 4 <ruby>
5 PASS 5 PASS
6 <rt id="rt1"></rt> 6 <rt id="rt1"></rt>
7 <i> 7 <i>
8 <table id="table1"></table><table id="table2"><span><span> 8 <table id="table1"></table><table id="table2"><span><span>
9 </i> 9 </i>
10 </ruby> 10 </ruby>
11 </body> 11 </body>
12 <script> 12 <script>
13 document.body.offsetTop; 13 document.body.offsetTop;
14 var table1 = document.getElementById('table1'); 14 var table1 = document.getElementById('table1');
15 table1.parentNode.removeChild(table1); 15 table1.parentNode.removeChild(table1);
16 document.body.offsetTop; 16 document.body.offsetTop;
17 var table2 = document.getElementById('table2'); 17 var table2 = document.getElementById('table2');
18 table2.parentNode.removeChild(table2); 18 table2.parentNode.removeChild(table2);
19 document.body.offsetTop; 19 document.body.offsetTop;
20 var rt1 = document.getElementById('rt1'); 20 var rt1 = document.getElementById('rt1');
21 rt1.parentNode.removeChild(rt1); 21 rt1.parentNode.removeChild(rt1);
22 </script> 22 </script>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/platform/mac/fast/ruby/ruby-base-merge-block-children-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698