| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>CSS Writing Modes: text-combine-upright: all</title> | 5 <title>CSS Writing Modes: text-combine-upright: all</title> |
| 6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYak
ura"> | 6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYak
ura"> |
| 7 <meta name="flags" content="font"> | 7 <meta name="flags" content="font"> |
| 8 <style> | 8 <style> |
| 9 @font-face { | 9 @font-face { |
| 10 font-family: tcu-font; | 10 font-family: tcu-font; |
| 11 src: url("suppotcu-font.woff"); | 11 src: url("support/tcu-font.woff"); |
| 12 } | 12 } |
| 13 | 13 |
| 14 .test { | 14 .test { |
| 15 writing-mode: vertical-rl; | 15 writing-mode: vertical-rl; |
| 16 font-size: 5em; | 16 font-size: 5em; |
| 17 font-family: tcu-font; | 17 font-family: tcu-font; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .tcy { | 20 .tcy { |
| 21 text-combine-upright: all; | 21 text-combine-upright: all; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 </head> | 24 </head> |
| 25 <body> | 25 <body> |
| 26 | 26 |
| 27 <p>Test passes if there are 2 <strong>identical</strong> white triangles.</p> | 27 <p>Test passes if there are 2 <strong>identical</strong> white triangles.</p> |
| 28 | 28 |
| 29 <div class="test"> | 29 <div class="test"> |
| 30 <p>3</p> | 30 <p>3</p> |
| 31 <p>3</p> | 31 <p>3</p> |
| 32 </div> | 32 </div> |
| 33 | 33 |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |