summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/reference/background-image-first-letter-ref.html
blob: fd2fdf93aaa9b1d4bccb8731b09ea27aa2fabdfc (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
<!DOCTYPE html>
<html class="reftest-wait">
<head>
    <title>CSS Reftest Reference</title>
    <link rel="author" title="Ethan Malasky" href="mailto:emalasky@adobe.com">
    <meta name="flags" content="ahem image">
    <script src="/common/reftest-wait.js"></script>
    <link rel="preload" as="image" href="../support/cat.png" onload="takeScreenshot()" />
    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
    <style type="text/css">
        #content {
            color: transparent;
            font: 100px Ahem;
        }
        #content > #foo {
            background-image: url("../support/cat.png");  /* 98 w. by 99px h. */
            background-repeat: no-repeat;
        }
    </style>
</head>
<body>
    <p>Test passes if cat image is visible.</p>
    <div id="content"><span id="foo">X</span>
    </div>
</body>
</html>