Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
|
ojan
2014/05/21 18:43:12
We usually leave out the <html><head> and <body> e
jfernandez
2014/05/22 14:40:46
I've removed those elements from the new patch. Ho
| |
| 3 <link href="resources/grid.css" rel="stylesheet"> | |
| 4 <head> | |
| 5 <style> | |
| 6 .basic { | |
| 7 background-color: grey; | |
| 8 height: 100px; | |
| 9 margin-top: 50px; | |
| 10 } | |
| 11 | |
| 12 .item { | |
| 13 width: 50px; | |
| 14 height: 50px; | |
| 15 margin-top: 20px; | |
| 16 } | |
| 17 </style> | |
| 18 </head> | |
| 19 <body> | |
| 20 <div>This test checks that the grid's margins do not collapse with the margins o f its contents.</div> | |
| 21 <div class="basic grid"> | |
| 22 <div class="item firstRowFirstColumn"></div> | |
|
ojan
2014/05/21 18:43:12
Please use consistent indentation (i.e. use 4 spac
jfernandez
2014/05/22 14:40:46
Done.
| |
| 23 </div> | |
| 24 </body> | |
| 25 </html> | |
| 26 | |
| OLD | NEW |