hyphens-vertical-001.html (788B)
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-001-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 border: 1px solid gray; 14 margin: 10px; 15 padding: 2px; 16 hyphens: manual; 17 width: 3em; 18 height: 9ch; 19 } 20 </style> 21 22 <p>Test passes if the two boxes look the same:</p> 23 24 <div> 25 hyphen­ation 26 </div> 27 28 <div> 29 hyphen‐<br>ation 30 </div>