tor-browser

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

text-combine-upright-inherit-all-002.html (1060B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Writing Modes Test: text-combine-upright :all </title>
      5    <link rel="author" title="Shinsuke Matsuki" href="mailto:shinsuke.matsuki@access-company.com">
      6    <meta charset="utf-8">
      7    <style type="text/css">
      8    #container {
      9        font-size:50px;
     10    }
     11    .vrl {
     12        writing-mode:vertical-rl;
     13    }
     14    .tcy {
     15        text-combine-upright:all;
     16    }
     17    </style>
     18 </head>
     19 <body>
     20    <p>Test passes if the <b>line breaks</b> before <q>56</q>, and all digits are in<b>upright</b> in <b>horizontal</b> flow.
     21    <div id=container>
     22        <div class="vrl tcy">
     23            <table>
     24                <tr>
     25                    <td>
     26                        <div style="display: inline-table">
     27                            <div style="display: inline-block">
     28                                <span class=tcy>12</span><span class=tcy>56</span>
     29                            </div>
     30                        </div>
     31                    </td>
     32                </tr>
     33            </table>
     34        </div>
     35    </div>
     36 </body>
     37 </html>