tor-browser

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

letter-spacing-cursive-001-ref.html (613B)


      1 <!DOCTYPE html>
      2 <head>
      3 <meta charset="utf-8">
      4 <title>
      5 CSS Text Test - Letter-spacing should not be applied for Cursive Scripts.
      6 </title>
      7 <link rel="author" title="Sejal Anand" href="mailto:sejalanand@microsoft.com">
      8 <style>
      9 div {
     10  margin: 1em;
     11  font: 24px serif;
     12  white-space: nowrap;
     13  display: inline-block;
     14  outline: 1px solid gray;
     15 }
     16 </style>
     17 </head>
     18 <body>
     19 <p>
     20 The following test will pass if no spacing appears between letters within
     21 Arabic words. Both Arabic texts should display identically.
     22 </p>
     23 <div>
     24 <span>مرحباً</span>
     25 </div>
     26 <br>
     27 <div>
     28 <span>مرحباً</span>
     29 </div>
     30 <br>
     31 </body>
     32 </html>