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/font-face/colrv1-06.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.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/font-face/colrv1-06.html')
-rw-r--r-- | layout/reftests/font-face/colrv1-06.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/layout/reftests/font-face/colrv1-06.html b/layout/reftests/font-face/colrv1-06.html new file mode 100644 index 0000000000..a8c1fabf71 --- /dev/null +++ b/layout/reftests/font-face/colrv1-06.html @@ -0,0 +1,42 @@ +<!DOCTYPE html> +<html> +<meta charset=utf-8> +<title>COLRv1 font test: radial gradient variations</title> +<style> +@font-face { + font-family: CAhem; + src: url("CAhem.ttf"); +} +p { margin: 0; } +span { font: 120px/1 CAhem; } +.a { font-variation-settings: "GRX0" 500, "GRR0" 50, "GRX1" 900, "GRR1" 150, "COL1" 0, "COL2" 0.5, "COL3" 1.0; } +.b { font-variation-settings: "GRX0" 700, "GRR0" 100, "GRX1" 900, "GRR1" 150, "COL1" -1.0, "COL2" 0.0, "COL3" 1.0; } +.c { font-variation-settings: "GRX0" 300, "GRR0" 0, "GRX1" 700, "GRR1" 100, "COL1" 0.5, "COL2" 1.0, "COL3" 1.5; } +.d { font-variation-settings: "GRX0" 100, "GRR0" -50, "GRX1" 900, "GRR1" 150, "COL1" 0.5, "COL2" 0.75, "COL3" 1.0; } +.e { font-variation-settings: "GRX0" 100, "GRR0" -50, "GRX1" 300, "GRR1" 0, "COL1" -2.0, "COL2" -1.0, "COL3" 0.0; } +.f { font-variation-settings: "GRX0" 100, "GRR0" -50, "GRX1" 200, "GRR1" -25, "COL1" -2.0, "COL2" 0.0, "COL3" 2.0; } +.g { font-variation-settings: "GRX0" 100, "GRR0" -50, "GRX1" 300, "GRR1" 0, "COL1" -2.0, "COL2" 0.0, "COL3" 0.0; } +</style> + +<p>All four lines should show the same set of gradients:</p> +<div> + <div><span class=a>@#$</div> + <div><span class=b>@#$</div> + <div><span class=c>@#$</div> + <div><span class=d>@#$</div> +</div> + +<p>Same again, but the leftmost gradient should be solid blue:</p> +<div> + <div><span class=e>@#$</div> +</div> + +<p>And with the gradients shifted a half-cycle to the right:</p> +<div> + <div><span class=f>@#$</div> +</div> + +<p>Left glyph is solid blue; no blue in the repeating gradients:</p> +<div> + <div><span class=g>@#$</div> +</div> |