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

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

Issue 1204023002: Deflake tests using ahem font with @font-face. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline and fix an svg test Created 5 years, 6 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 | Annotate | Revision Log
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 <script src="../../resources/ahem.js"></script>
3 <body> 4 <body>
4 <ruby> 5 <ruby>
5 PASS 6 PASS
6 <rt id="rt1"></rt> 7 <rt id="rt1"></rt>
7 <i> 8 <i>
8 <table id="table1"></table><table id="table2"><span><span> 9 <table id="table1"></table><table id="table2"><span><span>
9 </i> 10 </i>
10 </ruby> 11 </ruby>
11 </body> 12 </body>
12 <script> 13 <script>
13 document.body.offsetTop; 14 document.body.offsetTop;
14 var table1 = document.getElementById('table1'); 15 var table1 = document.getElementById('table1');
15 table1.parentNode.removeChild(table1); 16 table1.parentNode.removeChild(table1);
16 document.body.offsetTop; 17 document.body.offsetTop;
17 var table2 = document.getElementById('table2'); 18 var table2 = document.getElementById('table2');
18 table2.parentNode.removeChild(table2); 19 table2.parentNode.removeChild(table2);
19 document.body.offsetTop; 20 document.body.offsetTop;
20 var rt1 = document.getElementById('rt1'); 21 var rt1 = document.getElementById('rt1');
21 rt1.parentNode.removeChild(rt1); 22 rt1.parentNode.removeChild(rt1);
22 </script> 23 </script>
23 </body> 24 </body>
24 </html> 25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/ruby/position-after.html ('k') | LayoutTests/fast/ruby/ruby-block-style-not-updated.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698