| 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 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combin
e-upright"> | |
| 7 <link rel="match" href="reference/value-all-and-inherit-001-ref.htm"> | |
| 8 <meta name="assert" content="Two white triangles does not pointing to the ri
ght. Pointing up."> | |
| 9 <meta charset="utf-8"> | |
| 10 <style type="text/css"> | |
| 11 @font-face { | |
| 12 font-family: 'tcu-font'; | |
| 13 src: url('support/tcu-font.woff'); | |
| 14 } | |
| 15 | |
| 16 .tcu-all { | |
| 17 font-family: 'tcu-font'; | |
| 18 -webkit-writing-mode: vertical-rl; | |
| 19 -webkit-text-combine: horizontal; | |
| 20 } | |
| 21 </style> | |
| 22 </head> | |
| 23 <body> | |
| 24 <p>Test passes if the two white triangles are pointing to the right.</p> | |
| 25 <div class="tcu-all"> | |
| 26 <table> | |
| 27 <tr> | |
| 28 <td> | |
| 29 <div style="display: inline-table"> | |
| 30 <div style="display: inline-block"> | |
| 31 <p>2<span>2</span></p> | |
| 32 </div> | |
| 33 </div> | |
| 34 </td> | |
| 35 </tr> | |
| 36 </table> | |
| 37 </div> | |
| 38 </body> | |
| 39 </html> | |
| OLD | NEW |