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

Side by Side Diff: LayoutTests/fast/ruby/float-overhang-from-ruby-text.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 <script src="../../resources/ahem.js"></script>
1 <style> 2 <style>
2 ruby { font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none; } 3 ruby { font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none; }
3 .float { height: 50px; width: 50px; float: left; background-color: lightblue ; } 4 .float { height: 50px; width: 50px; float: left; background-color: lightblue ; }
4 </style> 5 </style>
5 <div> 6 <div>
6 <ruby>aa<rt>a<div class="float"></div></rt></ruby> 7 <ruby>aa<rt>a<div class="float"></div></rt></ruby>
7 </div> 8 </div>
8 <div> 9 <div>
9 <ruby>aa<rt id="target">a<div class="float"></div></rt></ruby> 10 <ruby>aa<rt id="target">a<div class="float"></div></rt></ruby>
10 </div> 11 </div>
11 <script> 12 <script>
12 document.body.offsetTop; 13 document.body.offsetTop;
13 var target = document.getElementById("target"); 14 var target = document.getElementById("target");
14 target.parentNode.removeChild(target); 15 target.parentNode.removeChild(target);
15 </script> 16 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/repaint/transform-inline-layered-child.html ('k') | LayoutTests/fast/ruby/overhang-horizontal.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698