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

Side by Side Diff: LayoutTests/fast/ruby/float-overhang-from-ruby-text.html

Issue 8044031: Merge 94991 - <rdar://problem/10054615> Floats in ruby text intrude into the base (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
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/fast/ruby/float-overhang-from-ruby-text-expected.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <style> 1 <style>
2 ruby { font-family: ahem; font-size: 50px; -webkit-font-smoothing: none; } 2 ruby { font-family: ahem; font-size: 50px; -webkit-font-smoothing: none; }
3 .float { height: 50px; width: 50px; float: left; background-color: lightblue ; } 3 .float { height: 50px; width: 50px; float: left; background-color: lightblue ; }
4 </style> 4 </style>
5 <div> 5 <div>
6 <ruby>aa<rt>a<div class="float"></div></rt></ruby> 6 <ruby>aa<rt>a<div class="float"></div></rt></ruby>
7 </div> 7 </div>
8 <div> 8 <div>
9 <ruby>aa<rt id="target">a<div class="float"></div></rt></ruby> 9 <ruby>aa<rt id="target">a<div class="float"></div></rt></ruby>
10 </div> 10 </div>
11 <script> 11 <script>
12 document.body.offsetTop; 12 document.body.offsetTop;
13 var target = document.getElementById("target"); 13 var target = document.getElementById("target");
14 target.parentNode.removeChild(target); 14 target.parentNode.removeChild(target);
15 </script> 15 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/ruby/float-overhang-from-ruby-text-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698