diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html b/testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html new file mode 100644 index 0000000000..3b45e919ad --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> +<head> +<title>CSS test reference: background-clip: text paints multi-line text in the wrong place</title> +<link rel="author" href="mailto:mmaxfield@apple.com" title="Myles C. Maxfield"> +<link rel="stylesheet" href="/fonts/ahem.css"> +<style> +#container { + position: relative; + padding: 3px; +} + +span { + color: green; + font: 48px "Ahem"; +} + +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> +</body> +</html> |