tor-browser

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

text-autospace-002.html (871B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Test: text-autospace:normal with ideographs that is outside of Basic Multilingual Plane.</title>
      4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      6 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property">
      7 <link rel="stylesheet" href="/fonts/ahem.css">
      8 <link rel="match" href="text-autospace-002-ref.html">
      9 <style>
     10 .test {
     11  font-family: Ahem;
     12  font-size: 40px;
     13 }
     14 .normal {
     15  text-autospace: normal;
     16 }
     17 </style>
     18 <div id="container">
     19  <div class="test normal">&#x20000;&#x20000;XX&#x20000;</div>
     20  <div class="test normal">&#x20000;。XX&#x20000;</div>
     21  <div dir="rtl" class="test normal">&#x20000;&#x20000;XX&#x20000;</div>
     22  <div dir="rtl" class="test normal">&#x20000;。XX&#x20000;</div>
     23 </div>