summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-paint-formatting-context-margin-001-ref.html
blob: 1976f71bf552351c95ac878934eb1b0f03d46e47 (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
25
26
27
28
29
30
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Reftest Test</title>
  <link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
  <style>
  #a {
      background: blue;
      margin: 10px;
      width: 50px;
      height: 50px;
  }
  #b {
      width: 50px;
      height: 40px;
      background: green;
  }
  #b-padding {
      height: 10px;
  }
  </style>
</head>
<body>
  <div id="a">
    <div id="b-padding"></div>
    <div id="b"></div>
  </div>
</body>
</html>