OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> |
2 <title>CSS Writing Modes Test: outline layout and non-replaced inline and vertic
al-rl writing-mode</title> | 3 <title>CSS Writing Modes Test: outline layout and non-replaced inline and vertic
al-rl writing-mode</title> |
3 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com" /> | 4 <link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com" /> |
4 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> <!-- 2016-01-14 --> | 5 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> <!-- 2016-01-14 --> |
5 <meta content="ahem" name="flags" /> | 6 <meta content="ahem" name="flags" /> |
6 <style> | 7 <style> |
7 .container { | 8 .container { |
8 color:transparent; | 9 color:transparent; |
9 font:50px/1 Ahem; | 10 font:50px/1 Ahem; |
10 } | 11 } |
11 .outline { | 12 .outline { |
12 color:orange; | 13 color:orange; |
13 display:inline-block; | 14 display:inline-block; |
14 outline:blue solid 2px; | 15 outline:blue solid 2px; |
15 } | 16 } |
16 </style> | 17 </style> |
17 <p>Test passes if the inside of 3 blue rectangles is orange. | 18 <p>Test passes if the inside of 3 blue rectangles is orange. |
18 <div class="container"> | 19 <div class="container"> |
19 <span class="outline" style="margin-left:1em">1</span><br> | 20 <span class="outline" style="margin-left:1em">1</span><br> |
20 <span class="outline" style="margin-left:3em">1<br>2</span><br> | 21 <span class="outline" style="margin-left:3em">1<br>2</span><br> |
21 <span class="outline" style="margin-left:5em">1<br>2<br>X</span> | 22 <span class="outline" style="margin-left:5em">1<br>2<br>X</span> |
22 </div> | 23 </div> |
OLD | NEW |