Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 html, body { margin-left: 0; } | |
|
Xianzhu
2014/10/22 17:39:25
Why setting only margin-left? (or perhaps you coul
| |
| 4 .quote:before { content: open-quote; } | |
| 5 .green { color: green; } | |
| 6 </style> | |
| 7 <p>Test passes if you see a quote on one line and a green B on the second line.< /p> | |
| 8 <div class="quote"></div> | |
| 9 <table cellpadding="0" cellspacing="0"> | |
| 10 <tr> | |
| 11 <td class="green">B</td> | |
| 12 </tr> | |
| 13 </table> | |
| OLD | NEW |