summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/849996-1-ref.html
blob: 7b149f1ac8078e14b0d807bcb446a1d3d6af70ed (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>
#parent {
  width: 200px;
  height: 200px;
  margin-left: 10px;
  background: green;
}
#child {
  width: 90px;
  height: 90px;
  background: red;
}
</style>
</head>
<body>
<div id="parent">
  <div id="child"></div>
</div>
</body>
</html>