| OLD | NEW |
| (Empty) |
| 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@ac
cess-company.com"> | |
| 6 <meta charset="utf-8"> | |
| 7 <style type="text/css"> | |
| 8 @font-face { | |
| 9 font-family: 'tcu-font'; | |
| 10 src: url('support/tcu-font.woff'); | |
| 11 } | |
| 12 .tcu-all { | |
| 13 font-family: 'tcu-font'; | |
| 14 -webkit-writing-mode: vertical-rl; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <p>Test passes if the two white triangles are pointing to the right.</p> | |
| 20 <div class="tcu-all"> | |
| 21 <table> | |
| 22 <tr> | |
| 23 <td> | |
| 24 <div style="display: inline-table"> | |
| 25 <div style="display: inline-block"> | |
| 26 <p>3<span>3</span></p> | |
| 27 </div> | |
| 28 </div> | |
| 29 </td> | |
| 30 </tr> | |
| 31 </table> | |
| 32 </div> | |
| 33 </body> | |
| 34 </html> | |
| OLD | NEW |