| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>CSS Writing Modes Test: text-combine-upright with decoration</title> | 4 <title>CSS Writing Modes Test: text-combine-upright with decoration</title> |
| 5 <link rel="author" title="Shinsuke Matsuki" href="mailto:shinsuke.matsuki@ac
cess-company.com"> | 5 <link rel="author" title="Shinsuke Matsuki" href="mailto:shinsuke.matsuki@ac
cess-company.com"> |
| 6 <meta charset="utf-8"> | 6 <meta charset="utf-8"> |
| 7 <style type="text/css"> | 7 <style type="text/css"> |
| 8 @font-face { | 8 @font-face { |
| 9 font-family: 'tcu-font'; | 9 font-family: 'tcu-font'; |
| 10 src: url('support/tcu-font.woff'); | 10 src: url('support/tcu-font.woff'); |
| 11 } | 11 } |
| 12 | 12 |
| 13 .tcu-with-decoration { | 13 .tcu-with-decoration { |
| 14 font: 100px 'tcu-font'; | 14 font: 100px 'tcu-font'; |
| 15 -webkit-writing-mode: vertical-rl; | 15 -webkit-writing-mode: vertical-rl; |
| 16 -webkit-text-combine: horizontal; | 16 -webkit-text-combine: horizontal; |
| 17 text-decoration: underline; | 17 text-decoration: underline; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 </head> | 20 </head> |
| 21 <body> | 21 <body> |
| 22 <p>Test passes if this figure and the decoration are idencial</p> | 22 <p>Test passes if this figure and the decoration are idencial</p> |
| 23 <div class="tcu-with-decoration">7</div> | 23 <div class="tcu-with-decoration">7</div> |
| 24 </body> | 24 </body> |
| 25 </html> | 25 </html> |
| OLD | NEW |