summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/background-clip-1-ref.html
blob: 357fbc00073d7f24e5c248fa3787def1e88a5eac (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<title>background-clip</title>
<style type="text/css">

div {
  position: absolute;
}

div.color {
  top: 10px;
  background-color: blue;
}

div.image {
  top: 110px;
  background-color: blue;
}

div.border {
  left: 18px;
  margin-top: 1px;
  width: 76px;
  height: 42px;
}

div.padding {
  left: 130px;
  margin-top: 4px;
  width: 55px;
  height: 33px;
}

div.content {
  left: 237px;
  margin-top: 9px;
  width: 37px;
  height: 19px;
}

</style>
<div class="color border"></div>
<div class="color padding"></div>
<div class="color content"></div>
<div class="image border"></div>
<div class="image padding"></div>
<div class="image content"></div>