text-combine-upright-value-single-character.html (574B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Writing Modes: text-combine-upright: all</title> 6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYakura"> 7 <style> 8 @font-face { 9 font-family: tcu-font; 10 src: url("/fonts/tcu-font.woff"); 11 } 12 13 .test { 14 writing-mode: vertical-rl; 15 font-size: 5em; 16 font-family: tcu-font; 17 } 18 19 .tcy { 20 text-combine-upright: all; 21 } 22 </style> 23 </head> 24 <body> 25 26 <p>Test passes if there are 2 <strong>identical</strong> white triangles.</p> 27 28 <div class="test"> 29 <p>3</p> 30 <p>3</p> 31 </div> 32 33 </body> 34 </html>