initial-letter-with-tab-rtl.html (970B)
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 <link rel="match" href="initial-letter-with-tab-rtl-ref.html"> 10 <style> 11 .sample { 12 direction: rtl; 13 font-family: Ahem; 14 font-size: 20px; 15 line-height: 24px; 16 } 17 18 .initial-letter::first-letter { 19 initial-letter: 3 drop; 20 color: lime; 21 font-size: 100px; /* should be ignored in rendering */ 22 line-height: 50px; /* should be ignored in rendering */ 23 } 24 25 .sample { white-space: pre; } 26 .initial-letter::first-letter { background: yellow; } 27 </style> 28 </head> 29 <body> 30 <div class="sample initial-letter">	Abc 31 def 32 ghi 33 jkl 34 mno</div> 35 </body> 36 </html>