summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/block-html-body-1-noref.html
blob: 7f14949b2241eeecc8bd2902c91edf936054494b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
 margin: 0; padding: 0;
 background-color: green;
}
div {
 margin: 30px 20px;
 background-color: red;
 height: 20px;
}
div div {
 margin: 50px;
 background-color: blue;
}
</style>
</head>
<body>
<div><div></div></div>
</body>
</html>