tor-browser

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

full-width-001-horizontal-notref.html (972B)


      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    }
     14 
     15  div > p
     16    {
     17      border: black solid 1px;
     18    }
     19 
     20  span.full-width
     21    {
     22      text-transform: full-width;
     23    }
     24 </style>
     25 </head>
     26 <body>
     27 
     28 <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>
     29 
     30 <div>
     31 
     32  <p><span class="full-width">&#x34;</span></p>
     33 
     34  <!-- &#x34; is the ISO-Latin1 digit 4 -->
     35 
     36  <p>&#xFF14;</p>
     37 
     38  <!-- &#xFF14; is the FULLWIDTH DIGIT 4 (≈ <wide> 0034 4)-->
     39 
     40  <p>&#xFF14;</p>
     41 
     42 </div>
     43 
     44 </body>
     45 </html>