summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/background-size-zoom-repeat-ref.html
blob: 1a5a1fd0af39f6999e4873d9d0bdde22e62ec92d (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
  <title>background-size: 64px 40px; repeat, zoom reference</title>
  <style type="text/css">
html
{
  margin: 0;
  padding: 0;
}
body
{
  margin: 0;
  padding: 20px;
}
#outer
{
  width: 512px;
  height: 320px;
}
  /*
   * PRE-ZOOM:
   *   2x size the image, then tile it 4x4 across the div; sampling artifacts at
   *   32px horizontal offset, then every 64px for the full height of the div.
   * POST-ZOOM:
   *   4x size the image, then tile it 4x4 across the div; sampling artifacts at
   *   64px horizontal offset, then every 128px for the full height of the div.
   */

/* Aargh, sampling artifacts, we hates them, precioussss. */
#outer > div
{
  display: inline-block;
  width: 56px;
  height: 320px;
}
.blue
{
  background: url(blue-16x20.png);
  border-right: 8px solid black;
}
.green
{
  background: url(green-16x20.png);
  border-left: 8px solid black;
}
  </style>
</head>
<body>
<div id="outer"><div
  class="blue"></div><div
  class="green"></div><div
  class="blue"></div><div
  class="green"></div><div
  class="blue"></div><div
  class="green"></div><div
  class="blue"></div><div
  class="green"></div></div>
</body>
</html>