| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title>CSS Writing Modes: text-combine-upright: none</title> |
| 6 <link rel="author" title="Masataka Yakura" href="https://google.com/+MasatakaYak
ura"> |
| 7 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#text-combine-up
right"> |
| 8 <link rel="match" href="reference/vertical-ahem-1x3-ref.html"> |
| 9 <link rel="mismatch" href="reference/horizontal-ahem-1x3-notref.html"> |
| 10 <meta name="assert" content="'text-combine-upright: none' does not combine any c
haracters in any circumstance."> |
| 11 <meta name="flags" content="ahem"> |
| 12 <style> |
| 13 .test { |
| 14 -webkit-writing-mode: vertical-rl; |
| 15 font-size: 5em; |
| 16 font-family: Ahem; |
| 17 } |
| 18 |
| 19 .tcy { |
| 20 -webkit-text-combine: none; |
| 21 } |
| 22 </style> |
| 23 </head> |
| 24 <body> |
| 25 |
| 26 <p>Test passes if there are 2 <strong>identical</strong> black rectangles.</p> |
| 27 |
| 28 <div class="test"> |
| 29 <p><span class="tcy">A01</span></p> |
| 30 <p>xxx</p> |
| 31 </div> |
| 32 |
| 33 </body> |
| 34 </html> |
| OLD | NEW |