text-combine-upright-break-inside-001-ref.html (651B)
1 <!DOCTYPE html> 2 <html lang="ja"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS Reference: text-combine-upright, no line break</title> 6 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> 7 <link rel="stylesheet" href="support/tcy.css"> 8 <style> 9 .test { writing-mode: vertical-rl; } 10 .test > p { height: 3em; margin: 0 5em; } 11 .tcy, .fake-tcy { color: transparent; } 12 </style> 13 </head> 14 <body> 15 <p>Test passes if the two columns are identical.</p> 16 <div class="test"> 17 <p style="white-space: nowrap">XXXXX<span class="fake-tcy">X</span>XXXXX</p> 18 <p style="white-space: nowrap">XXXXX<span class="fake-tcy">X</span>XXXXX</p> 19 </div> 20 </body> 21 </html>