initial-letter-with-tab-ref.html (950B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Tests initial letter should handle tabular character</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-styling"> 7 <meta name="flags" content="ahem"> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" > 9 <style> 10 .sample { 11 font-family: Ahem; 12 font-size: 20px; 13 line-height: 24px; 14 } 15 16 .fake-initial-letter { 17 background: lime; 18 float: left; 19 height: 80px; 20 margin-top: 2px; 21 width: 80px; 22 } 23 24 .fake-initial-letter-tab { 25 background: yellow; 26 float: left; 27 height: 80px; 28 margin-top: 2px; 29 width: 160px; 30 } 31 </style> 32 </head> 33 <body> 34 <div class="sample"><div class="fake-initial-letter-tab"></div> 35 <div class="fake-initial-letter"></div> 36 bc<br>def<br>ghi<br>jkl<br>mno<br> 37 </div> 38 </body> 39 </html>