tor-browser

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

letter-spacing-control-chars-001.html (792B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset=utf-8>
      5 <title>letter-spacing should not be applied to zero-width format controls</title>
      6 <link rel=match href="reference/letter-spacing-control-chars-001.ref.html">
      7 <link rel=help href="https://drafts.csswg.org/css-text-3/#letter-spacing-property">
      8 <style>
      9 .test {
     10  font: 12px/2 monospace;
     11  letter-spacing: 4px;
     12 }
     13 </style>
     14 </head>
     15 <body>
     16 The two lines below should match:<br>
     17 <div class=test>
     18 &#x200b;let&#x200b;ter&#x200b;spac&#x200b;ing&#x200b; should not be
     19 &#x200c;af&#x200c;fec&#x200c;ted&#x200c; by
     20 &#x200d;ze&#x200d;ro&#x200d;-&#x200d;width&#x200d;
     21 &#x2060;for&#x2060;mat&#x2060;
     22 &#xfeff;char&#xfeff;ac&#xfeff;ters&#xfeff;
     23 </div>
     24 <div class=test>
     25 letterspacing should not be
     26 affected by
     27 zero-width
     28 format
     29 characters
     30 </div>
     31 </body>
     32 </html>