text-combine-upright-inherit-all-002.html (1410B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Writing Modes Test: text-combine-upright :all</title> 5 <link rel="author" title="Shinsuke Matsuki" href="mailto:shinsuke.matsuki@access-company.com"> 6 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> 7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-upright"> 8 <link rel="match" href="reference/text-combine-upright-inherit-all-002.html"> 9 <meta name="assert" content="This test checks text-combine-upright:all inherits through the containment hierarchy and interrupted (by a box boundary) text runs"> 10 <style> 11 #container { 12 font-size:50px; 13 } 14 .vrl { 15 writing-mode:vertical-rl; 16 } 17 .tcy { 18 text-combine-upright:all; 19 } 20 </style> 21 </head> 22 <body> 23 <p>Test passes if the <b>line breaks</b> before <q>56</q>, and all digits are in<b>upright</b> in <b>horizontal</b> flow. 24 <div id=container> 25 <div class="vrl tcy"> 26 <table> 27 <tr> 28 <td> 29 <div style="display: inline-table"> 30 <div style="display: inline-block"> 31 <div>12<span>56</span></div> 32 </div> 33 </div> 34 </td> 35 </tr> 36 </table> 37 </div> 38 </div> 39 </body> 40 </html>