tor-browser

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

writing-mode-vrl-002-manual.html (1116B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8"/>
      5 <title>writing mode:vertical-rl, line wrap</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="writing-mode:vertical-rl will wrap lines from right to left."/>
      9 <style type="text/css">
     10 @font-face {
     11    font-family: "webfont";
     12    src: url("/fonts/mplus-1p-regular.woff") format("woff");
     13    font-weight: normal;
     14    font-style: normal;
     15    }
     16 .test, .ref { font-family: webfont, serif; font-size: 24px; height: 300px; width: 300px; }
     17 .test span { background-color:orange; color:orange;  }
     18 .test span#end { background-color:blue; color:blue;  }
     19 </style>
     20 <!-- this is the test -->
     21 <style type="text/css">
     22 .test { writing-mode: vertical-rl; }
     23 </style>
     24 </head>
     25 <body>
     26 <p class="instructions" dir="ltr">Test passes if the blue rectangle is on the left-most side.</p>
     27 <div class="test">
     28 <span lang="zh-hans">国际化活动万维网联盟国际化活动万维<span id="end">网联盟</span></span>
     29 </div>
     30 </body>
     31 </html>