| 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 text-emphasis</titl
e> | 4 <title>CSS Writing Modes Test: text-combine-upright with text-emphasis</titl
e> |
| 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 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combin
e-upright"> | 6 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combin
e-upright"> |
| 7 <link rel="match" href="reference/text-emphasis-001-ref.htm"> | 7 <link rel="match" href="reference/text-emphasis-001-ref.htm"> |
| 8 <link rel="mismatch" href="reference/text-emphasis-001-notref.htm"> | 8 <link rel="mismatch" href="reference/text-emphasis-001-notref.htm"> |
| 9 <meta name="assert" content="Test passes if text emphasis applies to the com
posed character but each character inside tate-chu-yoko."> | 9 <meta name="assert" content="Test passes if text emphasis applies to the com
posed character but each character inside tate-chu-yoko."> |
| 10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| 11 <style type="text/css"> | 11 <style type="text/css"> |
| 12 @font-face { | 12 @font-face { |
| 13 font-family: 'tcu-font'; | 13 font-family: 'tcu-font'; |
| 14 src: url('support/tcu-font.woff'); | 14 src: url('support/tcu-font.woff'); |
| 15 } | 15 } |
| 16 | 16 |
| 17 .tcu-with-emphasis { | 17 .tcu-with-emphasis { |
| 18 font: 100px 'tcu-font'; | 18 font: 100px 'tcu-font'; |
| 19 -webkit-writing-mode: vertical-rl; | 19 -webkit-writing-mode: vertical-rl; |
| 20 -webkit-text-combine: horizontal; | 20 -webkit-text-combine: horizontal; |
| 21 -webkit-text-emphasis-style: open dot ; | 21 -webkit-text-emphasis-style: open dot ; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 </head> | 24 </head> |
| 25 <body> | 25 <body> |
| 26 <p>Test passes if this figure and the emphasis are idencial</p> | 26 <p>Test passes if this figure and the emphasis are idencial</p> |
| 27 <div class="tcu-with-emphasis">44</div> | 27 <div class="tcu-with-emphasis">44</div> |
| 28 </body> | 28 </body> |
| 29 </html> | 29 </html> |
| OLD | NEW |