tor-browser

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

writing-mode-vrl-009-manual.html (1017B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8"/>
      5 <title>writing mode:vertical-rl, default Arabic direction</title>
      6 <link rel="author" title="Richard Ishida" href="mailto:ishida@w3.org"/>
      7 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#block-flow"/>
      8 <meta name="assert" content="By default, writing-mode:vertical-lr will display Arabic characters progressing up the page."/>
      9 <style type="text/css">
     10 .test, .ref { font-size: 24px; float: left; margin-right: 30px; color: #ccc; }
     11 span[lang=ar] { color: black; }
     12 </style>
     13 <!-- this is the test -->
     14 <style type="text/css">
     15 .test { writing-mode: vertical-rl; }
     16 </style>
     17 </head>
     18 <body>
     19 <p class="instructions">Test passes if the text runs vertically and the order of the Arabic characters is the same as on the blue background.</p>
     20 <div class="test" lang="zh-hans">国际化活动<span lang="ar">نشاط التدويل</span>万维网联盟</div>
     21 <div class="ref"><img src="support/zh+arabic.png" alt="ref image"/></div>
     22 </body>
     23 </html>