text-combine-upright-compression-004.html (906B)
1 <!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS Test: text-combine-upright, compression of four characters</title> 6 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> 7 <link rel="help" href="https://drafts.csswg.org/css-writing-modes-3/#text-combine-compression"> 8 <link rel="match" href="text-combine-upright-compression-004-ref.html"> 9 <meta name="assert" content="text-combine-upright should try applying 'qwid' feature if the width is wider than 1em"> 10 <link rel="stylesheet" href="support/width-test.css"> 11 <link rel="stylesheet" href="support/tcy.css"> 12 <style> 13 .test { writing-mode: vertical-rl; } 14 .test > p { border: 1px solid black; } 15 </style> 16 </head> 17 <body> 18 <p>Test passes if there are two identical graphs in the blocks below.</p> 19 <div class="test"> 20 <p><span class="tcy">0000</span></p> 21 <p><span class="fake-tcy">4444</span></p> 22 </div> 23 </body> 24 </html>