text-combine-upright-compression-005.html (900B)
1 <!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS Test: text-combine-upright, no compression for single full-width character</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-005-ref.html"> 9 <meta name="assert" content="text-combine-upright should not change a single full-width character"> 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">0</span></p> 21 <p><span class="fake-tcy">0</span></p> 22 </div> 23 </body> 24 </html>