summaryrefslogtreecommitdiffstats
path: root/layout/reftests/high-contrast/bg-image-div-001.html
blob: 8764901fb55355c5258d7eecfe9a2b9cdcca77b3 (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
<!DOCTYPE html>
<html>
<head>
  <title>When HCM is enabled, only background images sourced from URL's should be rendered. </title>
  <style>
    .outer {
      background-image: url("blue.png");
    }
    .size {
      height: 100px;
      width: 100px;
    }
    .gradient {
      background-image: linear-gradient(red, red);
    }
    .url {
      background-image: url("green.png");
    }
    .urlGradient {
      background-image: url("red.png"), linear-gradient(red, red);
    }
    .gradientUrl {
      background-image: linear-gradient(red, red), url("red.png");
    }
    .urlNone {
      background-image: url("red.png");
      background-image: none;
    }
  </style>
</head>
<body>
  <div class="outer">
    <div class="size url"></div><br>
    <div class="size gradient"></div></br>
    <div class="size urlGradient"></div><br>
    <div class="size gradientUrl"></div><br>
    <div class="size url gradient"></div><br>
    <div class="size urlNone"></div>
  </div>
</body>
</html>