summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line.html
blob: cd51b2ea0779e2a3cf7807f7f0eee5cb6a938acc (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>CSS Test: background-clip: text paints multi-line text in the wrong place</title>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-4/#valdef-background-clip-text">
<link rel="help" href="https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-color">
<link rel="author" href="mailto:mmaxfield@apple.com" title="Myles C. Maxfield">
<link rel="match" href="clip-text-multi-line-ref.html">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
#container {
    position: relative;
    padding: 3px;
}

span {
    font: 48px "Ahem";
    background-clip: text;
    fill-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(0deg, green 0%, green 100%);
}

div.cover {
    position: absolute;
    background: green;
}
</style>
</head>
<body>
<p>This test makes sure that multi-line elements with <code>background-clip: text</code> are placed correctly. The test passes if the top rectangle is (roughly) half as wide as the bottom rectangle.</p>
<div id="container">
<span>AAA<br>AAAAAA</span>
<div class="cover" style="left: 0px; top: 0px; width: calc(48px * 3 + 3px); height: 3px;"></div>
<div class="cover" style="left: 0px; top: 48px; width: calc(48px * 6 + 3px); height: 6px;"></div>
<div class="cover" style="left: 0px; top: calc(48px * 2); width: calc(48px * 6 + 3px); height: 3px;"></div>
<div class="cover" style="left: 0px; top: 0px; width: 3px; height: calc(48px * 2);"></div>
<div class="cover" style="left: calc(48px * 3); top: 0px; width: 3px; height: 48px;"></div>
<div class="cover" style="left: calc(48px * 6); top: 48px; width: 3px; height: 48px;"></div>
</div>
</body>
</html>