tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

initial-letter-with-tab.html (942B)


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