summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/background-size-percent-percent-stretch.html
blob: 912413d6991385b025460a44d4c2995ce0fe4650 (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
<!DOCTYPE html>
<html>
<head>
  <title>background-size: 100% 100%; stretch</title>
  <style type="text/css">
#outer
{
  border: 10px solid black;
  width: 60px;
  height: 120px;
}
#inner
{
  width: 60px;
  height: 120px;
  background-image: url(blue-8x20-green-16x20.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#innermost
{
  width: 15px;
  height: 120px;

  /* obscure sampling artifacts at the color boundary */
  border-right: 10px solid black;
}
  </style>
</head>
<body>
<div id="outer"><div id="inner"><div id="innermost"></div></div></div>
</body>
</html>