tor-browser

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

hyphens-vertical-002.html (823B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text test: soft hyphens in vertical writing mode</title>
      4 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#hyphenation">
      6 <link rel="match" href="reference/hyphens-vertical-002-ref.html">
      7 <meta name="assert" content="Check rendering of soft-hyphen character in vertical writing mode">
      8 
      9 <style>
     10    div {
     11        font: 16px monospace;
     12        writing-mode: vertical-rl;
     13        text-orientation: upright;
     14        border: 1px solid gray;
     15        margin: 10px;
     16        padding: 2px;
     17        hyphens: manual;
     18        width: 3em;
     19        height: 9ch;
     20    }
     21 </style>
     22 
     23 <p>Test passes if the two boxes look the same:</p>
     24 
     25 <div>
     26    hyphen&shy;ation
     27 </div>
     28 
     29 <div>
     30    hyphen&#x2010;<br>ation
     31 </div>