tor-browser

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

1331339-script-extensions-shaping-1.html (626B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset=utf-8>
      5 <style>
      6 @font-face {
      7  font-family: test;
      8  src: url(../fonts/TAMLThiruValluvar-Regular.ttf);
      9 }
     10 .test {
     11  font-family: test;
     12  width: -moz-fit-content;
     13 }
     14 .mask {
     15  background: green;
     16  position: relative;
     17  top: -.7em;
     18  height: .7em;
     19 }
     20 </style>
     21 </head>
     22 <body>
     23 <div class="test">
     24 <!--
     25 The Grantha nukta characters U+1133C should NOT disrupt shaping of the base text.
     26 -->
     27 &#x0BA4;&#x0BC6;&#x1133c;&#x0BAA;&#x1133c;&#x0BC6;&#x1133c;
     28 <!--
     29 We place a box over the bottom of the text to mask the nuktas from reftest comparison.
     30 -->
     31 <div class="mask"></div>
     32 </div>
     33 </body>
     34 </html>