tor-browser

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

text-autospace-combining-marks.html (1127B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property">
      4 <link rel="author" title="Vitor Roriz" href="https://github.com/vitorroriz">
      5 <link rel="match" href="text-autospace-combining-marks-ref.html">
      6 <style>
      7 .test {
      8  font-size: 40px;
      9  border: solid 3px salmon;
     10  width: fit-content;
     11  margin-bottom: 2px;
     12 }
     13 .normal {
     14  text-autospace: normal;
     15 }
     16 </style>
     17 <div class="test normal">&#x301;X</div>
     18 <div class="test normal">&#x301;</div>
     19 <div class="test normal">&#x301;X&#x301;</div>
     20 <div class="test normal">&#x301;&#x301;</div>
     21 <br>
     22 <div class="test normal">X&#x301;X</div>
     23 <div class="test normal">X&#x301;</div>
     24 <div class="test normal">X&#x301;X&#x301;</div>
     25 <div class="test normal">X&#x301;&#x301;</div>
     26 <br>
     27 <div class="test normal">XX</div>
     28 <div class="test normal">X国</div>
     29 <div class="test normal">XX&#x301;</div>
     30 <div class="test normal">X国&#x301;</div>
     31 <br>
     32 <div class="test normal">国X</div>
     33 <div class="test normal">国国</div>
     34 <div class="test normal">国X&#x301;</div>
     35 <div class="test normal">国国&#x301;</div>