Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-grid-layout / grid-margins-not-collapse-expected.html
blobcb8b7bcf012929448de1d2220bbc671d8b92cd64
1 <!DOCTYPE html>
2 <link href="resources/grid.css" rel="stylesheet">
3 <head>
4 <style>
5 .basic {
6 background-color: grey;
7 height: 100px;
8 margin-top: 50px;
11 .item {
12 background-color: blue;
13 width: 50px;
14 height: 50px;
15 position: relative;
16 top: 20px;
18 </style>
19 <div>This test checks that the grid's margins do not collapse with the margins of its contents.</div>
20 <div class="basic">
21 <div class="item"></div>
22 </div>