tor-browser

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

text-orientation-012.xht (1739B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4 
      5  <head>
      6 
      7   <title>CSS Writing Modes Test: text-orientation - upright</title>
      8 
      9   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
     10   <link rel="help" title="5.1. Orienting Text: the 'text-orientation' property" href="http://www.w3.org/TR/css-writing-modes-3/#text-orientation" />
     11 
     12   <meta name="flags" content="image" />
     13 
     14   <meta name="assert" content="This test checks that 'text-orientation: upright' causes characters from horizontal-only scripts and from vertical scripts to be translated upright." />
     15 
     16   <style type="text/css"><![CDATA[
     17   @font-face
     18     {
     19       font-family: "mplus-1p-regular";
     20       src: url("/fonts/mplus-1p-regular.woff") format("woff");
     21     }
     22 
     23   div
     24     {
     25       border: gray solid 1px;
     26       float: left;
     27       font-family: "mplus-1p-regular";
     28       font-size: 32px;
     29       line-height: 1.5; /* computes to 48px */
     30       margin-right: 1em;
     31       text-orientation: upright;
     32       writing-mode: vertical-rl;
     33     }
     34 
     35   div#reference
     36     {
     37       border-bottom: white none 0px;
     38       border-right: white none 0px;
     39     }
     40   ]]></style>
     41 
     42  </head>
     43 
     44  <body>
     45 
     46   <p>Test passes if characters of both rectangles have the <strong>same order</strong>, <strong>same layout</strong> and the <strong>same orientation</strong>. Note that a different inter-character spacing is considered as PASS.</p>
     47 
     48   <div id="test">月火水Abc<br />def木金土</div>
     49 
     50   <div id="reference"><img src="support/text-orientation-012.png" width="96" height="264" alt="Image download support must be enabled" /></div>
     51 
     52  </body>
     53 </html>