| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>CSS Writing Modes Test: </title> | 2 <title>CSS Writing Modes Test: </title> |
| 3 <link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine
-layout" title="9.1.2. Layout Rules"> | 3 <link rel="help" href="http://dev.w3.org/csswg/css-writing-modes-3/#text-combine
-layout" title="9.1.2. Layout Rules"> |
| 4 <link rel="match" href="reference/text-combine-upright-decorations-001.html"> | 4 <link rel="match" href="reference/text-combine-upright-decorations-001.html"> |
| 5 <meta name="assert" content="The resulting composition is treated as a signel gl
yph for decorations"> | 5 <meta name="assert" content="The resulting composition is treated as a signel gl
yph for decorations"> |
| 6 <meta name="flags" content="ahem"> | 6 <meta name="flags" content="ahem"> |
| 7 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> | 7 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com"> |
| 8 <style> | 8 <style> |
| 9 #container { | 9 #container { |
| 10 font: 50px/1 Ahem; | 10 font: 50px/1 Ahem; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 .underline { | 28 .underline { |
| 29 text-decoration:underline; | 29 text-decoration:underline; |
| 30 } | 30 } |
| 31 .overline { | 31 .overline { |
| 32 text-decoration:overline; | 32 text-decoration:overline; |
| 33 } | 33 } |
| 34 .emphasis { | 34 .emphasis { |
| 35 -webkit-text-emphasis:filled; | 35 -webkit-text-emphasis:filled; |
| 36 } | 36 } |
| 37 </style> | 37 </style> |
| 38 <p>This test asserts the resulting composition is treated as a signel glyph for
decorations. | 38 <p>This test asserts the resulting composition is treated as a single glyph for
decorations. |
| 39 <p>Test passes if the following two boxes in each row are identical. | 39 <p>Test passes if the following two boxes in each row are identical. |
| 40 <div id=container> | 40 <div id=container> |
| 41 <div class=vlr> | 41 <div class=vlr> |
| 42 <div class=test> | 42 <div class=test> |
| 43 <p class=underline>X<span class=tcy> </span>X | 43 <p class=underline>X<span class=tcy> </span>X |
| 44 <p class=overline>X<span class=tcy> </span>X | 44 <p class=overline>X<span class=tcy> </span>X |
| 45 <p class=emphasis>X<span class=tcy>X</span>X | 45 <p class=emphasis>X<span class=tcy>X</span>X |
| 46 </div> | 46 </div> |
| 47 <div class=ref> | 47 <div class=ref> |
| 48 <p class=underline>X X | 48 <p class=underline>X X |
| 49 <p class=overline>X X | 49 <p class=overline>X X |
| 50 <p class=emphasis>XXX | 50 <p class=emphasis>XXX |
| 51 </div> | 51 </div> |
| 52 </div> | 52 </div> |
| 53 <div class=vrl> | 53 <div class=vrl> |
| 54 <div class=test> | 54 <div class=test> |
| 55 <p class=underline>X<span class=tcy> </span>X | 55 <p class=underline>X<span class=tcy> </span>X |
| 56 <p class=overline>X<span class=tcy> </span>X | 56 <p class=overline>X<span class=tcy> </span>X |
| 57 <p class=emphasis>X<span class=tcy>X</span>X | 57 <p class=emphasis>X<span class=tcy>X</span>X |
| 58 </div> | 58 </div> |
| 59 <div class=ref> | 59 <div class=ref> |
| 60 <p class=underline>X X | 60 <p class=underline>X X |
| 61 <p class=overline>X X | 61 <p class=overline>X X |
| 62 <p class=emphasis>XXX | 62 <p class=emphasis>XXX |
| 63 </div> | 63 </div> |
| 64 </div> | 64 </div> |
| 65 </div> | 65 </div> |
| OLD | NEW |