summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1059167-1-ref.html
blob: 74404ce94e700e6c7aeee831a536fffd592d7b85 (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
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>bug 1059167</title>
  <style type="text/css">
    body {
        width: 200px;
        height: 200px;
        border: 1px solid black;
    }

    .item {
        width: 100px;
        margin-left: 80px;
        padding: 1rem;
        background: red;
        box-sizing: border-box;
    }

    p {
        background: blue;
    }
  </style>
</head>
<body>
  <div class="item"><p>Content</p></div>
</body>
</html>