tor-browser

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

text-orientation-upright-directionality-001.html (949B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Test: text-orientation:upright in sideways-* writing modes</title>
      6 <link rel="author" title="Jonathan Kew" href="mailto:jfkthame@gmail.com">
      7 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-orientation">
      8 <link rel="match" href="text-orientation-upright-directionality-001-ref.html">
      9 <meta name="assert" content="text-orientation has no effect in horizontal typographic modes">
     10 </head>
     11 <body style="font: 24px sans-serif">
     12 <p>The two sideways-rl lines should be identical:
     13 <div style="writing-mode:sideways-rl">
     14  <p>hello العربي world עברית</p>
     15  <p style="text-orientation:upright">hello العربي world עברית</p>
     16 </div>
     17 <p>The two sideways-lr lines should be identical:
     18 <div style="writing-mode:sideways-lr">
     19  <p>hello العربي world עברית</p>
     20  <p style="text-orientation:upright">hello العربي world עברית</p>
     21 </div>