initial-letter-float-001-srl-ref.html (1009B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Tests initial letter should be part of the line in sideways-rl</title> 5 <link rel="author" title="Google LLC" href="https://www.google.com/"> 6 <link rel="help" href="https://drafts.csswg.org/css-inline/#initial-letter-floats"> 7 <meta name="flags" content="ahem"> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" > 9 <style> 10 .sample { 11 border: solid 1px green; 12 font-family: Ahem; 13 font-size: 20px; 14 height: 230px; 15 line-height: 24px; 16 writing-mode: sideways-rl; 17 } 18 19 .float { 20 background: cyan; 21 clear: none; 22 float: left; 23 height: 50px; 24 width: 50px; 25 } 26 27 .fake-initial-letter { 28 background: lime; 29 float: left; 30 height: 80px; 31 margin-right: 2px; 32 width: 80px; 33 } 34 </style> 35 </head> 36 <body> 37 <div class="sample"><div class="float"></div> 38 <div class="fake-initial-letter"></div> 39 bc<br>def<br>ghi<br>jkl<br>mno<br> 40 </div> 41 </body> 42 </html>