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 (784B)


      1 <!DOCTYPE html>
      2 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title>
      3 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-upright">
      4 <link rel="match" href="reference/text-combine-upright-inherit-all-001.html">
      5 <meta name="assert" content="This test checks text-combine-upright:all inherits">
      6 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
      7 <style>
      8 #container {
      9    font-size:50px;
     10 }
     11 .vrl {
     12    writing-mode:vertical-rl;
     13 }
     14 .tcy {
     15    text-combine-upright:all;
     16 }
     17 </style>
     18 <p>Test passes if all two-digit numbers are <b>upright</b> in <b>horizontal</b> flow.
     19 <div id=container>
     20    <div>66</div>
     21    <div class=vrl><span class=tcy>66</span></div>
     22    <div class=vrl><span class=tcy><span>66</span></span></div>
     23 </div>