tor-browser

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

text-autospace-003.html (748B)


      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="stylesheet" type="text/css" href="/fonts/ahem.css" />
      5 <link rel="match" href="text-autospace-001-ref.html">
      6 <style>
      7 .test {
      8  font-family: Ahem;
      9  font-size: 40px;
     10 }
     11 .normal {
     12  text-autospace: normal;
     13  /* These properties have no effect on horizontal text,
     14     so should not disable the auto-space insertion: */
     15  text-orientation: upright;
     16  text-combine-upright: all;
     17 }
     18 </style>
     19 <div id="container">
     20  <div class="test normal">国国XX国</div>
     21  <div class="test normal">国。XX国</div>
     22  <div dir="rtl" class="test normal">国国XX国</div>
     23  <div dir="rtl" class="test normal">国。XX国</div>
     24 </div>