| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title> | 2 <title>CSS Writing Modes Test: text-combine-upright:all inherits</title> |
| 3 <link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine
-upright"> | |
| 4 <meta name="assert" content="This test checks text-combine-upright:all inherits"
> | |
| 5 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> | 3 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> |
| 6 <style> | 4 <style> |
| 7 #container { | 5 #container { |
| 8 font-size:50px; | 6 font-size:50px; |
| 9 } | 7 } |
| 10 .vrl { | 8 .vrl { |
| 11 -webkit-writing-mode:vertical-rl; | 9 -webkit-writing-mode:vertical-rl; |
| 12 } | 10 } |
| 13 .tcy { | 11 .tcy { |
| 14 -webkit-text-combine:horizontal; | 12 -webkit-text-combine:horizontal; |
| 15 } | 13 } |
| 16 </style> | 14 </style> |
| 17 <p>Test passes if all two-digit numbers are <b>upright</b> in <b>horizontal</b>
flow. | 15 <p>Test passes if all two-digit numbers are <b>upright</b> in <b>horizontal</b>
flow. |
| 18 <div id=container> | 16 <div id=container> |
| 19 <div>66</div> | 17 <div>66</div> |
| 20 <div class=vrl><span class=tcy>66</span></div> | 18 <div class=vrl><span class=tcy>66</span></div> |
| 21 <div class=vrl><span class=tcy>66</span></div> | 19 <div class=vrl><span class=tcy>66</span></div> |
| 22 </div> | 20 </div> |
| OLD | NEW |