summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/block-xhtml-html-2.xhtml
blob: 72ab87bec3a38a5ef3baadae6928f1cca4bc4d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <style type="text/css">
 html, body {
  margin: 0; padding: 0;
 }
 html {
  background-color: white;
 }
 body {
  background-color: red;
  margin: 20px 0;
 }
 div {
  background-color: green;
  margin: 10px 0;
  height: 100px;
 }
 </style>
</head>
<body>
<div></div>
</body>
</html>