summaryrefslogtreecommitdiffstats
path: root/layout/reftests/high-contrast/bg-image-div-001-ref.html
blob: 0f240809c0e8a9d6ac4c0e4133d3da80aa14a093 (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
<!DOCTYPE html>
<html>
<head>
  <title>Reference: Non-URL background images should be ignored high-contrast.</title>
  <style>
    .outer {
      background-image: url("blue.png");
    }
    .size {
      height: 100px;
      width: 100px;
    }
    .url {
      background-image: url("green.png");
    }
  </style>
</head>
<body>
  <div class="outer">
    <div class="size url"></div><br>
    <div class="size"></div></br>
    <div class="size"></div><br>
    <div class="size"></div><br>
    <div class="size url"></div><br>
    <div class="size"></div>
  </div>
</body>
</html>