text-combine-upright-compression-006a.html (972B)
1 <!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS Test: text-combine-upright, compression for two characters with full-width transform</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-fullwidth"> 8 <link rel="match" href="text-combine-upright-compression-006-ref.html"> 9 <meta name="assert" content="text-combine-upright should run the reverse of full-width transform before applying compression"> 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 .tcy { text-transform: full-width; } 16 </style> 17 </head> 18 <body> 19 <p>Test passes if there are two identical graphs in the blocks below.</p> 20 <div class="test"> 21 <p><span class="tcy">00</span></p> 22 <p><span class="fake-tcy">22</span></p> 23 </div> 24 </body> 25 </html>