Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-grid-layout / grid-margins-not-collapse.html
blobc2c49f1f4d5257a21049011ed3dde518a5be4509
1 <!DOCTYPE html>
2 <link href="resources/grid.css" rel="stylesheet">
3 <style>
4 .basic {
5 background-color: grey;
6 height: 100px;
7 margin-top: 50px;
10 .item {
11 width: 50px;
12 height: 50px;
13 margin-top: 20px;
15 </style>
16 <div>This test checks that the grid's margins do not collapse with the margins of its contents.</div>
17 <div class="basic grid">
18 <div class="item firstRowFirstColumn"></div>
19 </div>