diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/backgrounds/background-clip-text-1e.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/backgrounds/background-clip-text-1e.html')
-rw-r--r-- | layout/reftests/backgrounds/background-clip-text-1e.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-clip-text-1e.html b/layout/reftests/backgrounds/background-clip-text-1e.html new file mode 100644 index 0000000000..c0ba923e19 --- /dev/null +++ b/layout/reftests/backgrounds/background-clip-text-1e.html @@ -0,0 +1,32 @@ +<!doctype HTML> +<html> + <head> + <title>background-clip: text</title> + <style> + body { + transform: scale(1, 0.5); + } + div.out { + width: 500px; + height: 300px; + margin: 0px; + background-image: linear-gradient(green, green); + background-clip: text; + color: transparent; + font-size: 100px; + font-family: serif; + position: absolute; + left: 100px; + top: 100px; + transform: translate(-100px, 50px) scale(1, 2); + -moz-osx-font-smoothing: grayscale; + } + </style> + </head> + <body style="margin: 0px;"> + <div class="out"> + TEXT clip + <div style="display:inline-block; width:0px; height:200px;"/> + </div> + </body> +</html> |