tor-browser

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

text-combine-upright-sideways-002.html (647B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <title>CSS test: text-combine-upright has no effect in sideways writing mode</title>
      4 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"/>
      5 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-combine-upright"/>
      6 <link rel="match" href="reference/text-combine-upright-sideways-002-ref.html"/>
      7 <style>
      8 .test {
      9  font: 32px sans-serif;
     10  writing-mode: sideways-lr;
     11 }
     12 .combined {
     13  text-combine-upright: all;
     14 }
     15 </style>
     16 <body>
     17 <p>Test passes if the digits are NOT rotated or compressed to appear horizontally</p>
     18 <div class="test">AB<span class="combined">123</span>CD</div>