tor-browser

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

initial-letter-drop-initial-vlr-ref.html (830B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Tests initial letter drop initial in vertical-lr</title>
      5 <link rel="author" title="Google LLC" href="https://www.google.com/">
      6 <link rel="help" href="https://drafts.csswg.org/css-inline/#drop-initial">
      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: vertical-lr;
     17    }
     18 
     19    .fake-initial-letter {
     20        background: lime;
     21        float: left;
     22        height: 80px;
     23        margin-left: -4px;
     24        width: 80px;
     25    }
     26 </style>
     27 </head>
     28 <body>
     29 <div class="sample">
     30 <div class="fake-initial-letter"></div>
     31 bc<br>def<br>ghi<br>jkl<br>mno<br>
     32 </div>
     33 </body>
     34 </html>