repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
css-grid-layout
/
grid-margins-not-collapse-expected.html
blob
cb8b7bcf012929448de1d2220bbc671d8b92cd64
1
<!DOCTYPE
html
>
2
<link
href
=
"resources/grid.css"
rel
=
"stylesheet"
>
3
<head>
4
<style>
5
.basic {
6
background-color: grey;
7
height:
100
px;
8
margin-top:
50
px;
9
}
10
11
.item {
12
background-color: blue;
13
width:
50
px;
14
height:
50
px;
15
position: relative;
16
top:
20
px;
17
}
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>
23