summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/density-size-correction/density-corrected-size-bg-cross-origin.sub.html
blob: 2fe9eb4929c55aad1cc9cd0ef64095aeb0530621 (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>
<head>
    <title>Density corrected size: background images (cross-origin)</title>
    <link rel="match" href="density-corrected-size-bg-ref.html" />
    <meta name="assert" content="Assert that background images with EXIF density-corrected-size are rendered correctly">
</head>
<body>
    <style>
        body {
            --lores: url(http://{{hosts[alt][]}}:{{ports[http][0]}}/density-size-correction/resources/exif-resolution-valid-lores.jpg);
            --hires: url(http://{{hosts[alt][]}}:{{ports[http][0]}}/density-size-correction/resources/exif-resolution-valid-hires.jpg);
            --default: url(http://{{hosts[alt][]}}:{{ports[http][0]}}/density-size-correction/resources/exif-resolution-none.jpg);
            --non-uniform: url(http://{{hosts[alt][]}}:{{ports[http][0]}}/density-size-correction/resources/exif-resolution-valid-non-uniform.jpg);
        }
        .default-bg {background-image: var(--default); }
        .lores-bg {background-image: var(--lores); }
        .hires-bg {background-image: var(--hires); }
        .invalid-bg {background-image: var(--invalid); }
        .non-uniform-bg {background-image: var(--non-uniform); }
        .box { width: 200px; height: 200px; display: inline-block; }
        .tiled {background-repeat: repeat; }
        .stretch {background-repeat: no-repeat; background-size: contain; }
    </style>
    <div class="default-bg tiled box"></div>
    <div class="lores-bg tiled box"></div>
    <div class="hires-bg tiled box"></div>
    <div class="non-uniform-bg tiled box"></div>
    <br/>
    <div class="lores-bg stretch box"></div>
    <div class="default-bg stretch box"></div>
    <div class="non-uniform-bg stretch box"></div>
</body>
</html>