tor-browser

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

text-combine-upright-inherit-all-001.html (523B)


      1 <!DOCTYPE html>
      2 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title>
      3 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
      4 <style>
      5 #container {
      6    font-size:50px;
      7 }
      8 .vrl {
      9    writing-mode:vertical-rl;
     10 }
     11 .tcy {
     12    text-combine-upright:all;
     13 }
     14 </style>
     15 <p>Test passes if all two-digit numbers are <b>upright</b> in <b>horizontal</b> flow.
     16 <div id=container>
     17    <div>66</div>
     18    <div class=vrl><span class=tcy>66</span></div>
     19    <div class=vrl><span class=tcy>66</span></div>
     20 </div>