tor-browser

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

full-width-002-notcu-notref.html (1023B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Test Reference</title>
      6 <link rel="author" title="Masataka Yakura" href="http://google.com/+MasatakaYakura">
      7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
      8 <meta content="asis" name="flags">
      9 <style>
     10  div
     11    {
     12      font-size: 64px;
     13      writing-mode: vertical-rl;
     14    }
     15 
     16  div > p
     17    {
     18      border: black solid 1px;
     19    }
     20 
     21  span.full-width
     22    {
     23      text-transform: full-width;
     24    }
     25 </style>
     26 </head>
     27 <body>
     28 
     29 <p>Test passes if the glyphs in the 3 rectangles have the <strong>same order</strong>, the <strong>same orientation</strong> and the <strong>same layout</strong>; a different inter-character spacing is considered as PASS.</p>
     30 
     31 <div>
     32 
     33  <p><span class="full-width">28</span></p>
     34 
     35  <p>&#xFF12;&#xFF18;</p>
     36 
     37  <!-- &#xFF12; is the FULLWIDTH DIGIT 2 (≈ <wide> 0032 2)-->
     38 
     39  <!-- &#xFF18; is the FULLWIDTH DIGIT 8 (≈ <wide> 0038 8)-->
     40 
     41  <p>28日</p>
     42 
     43 </div>
     44 
     45 </body>
     46 </html>