diff options
Diffstat (limited to 'layout/reftests/font-face/colrv1-08.html')
-rw-r--r-- | layout/reftests/font-face/colrv1-08.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/font-face/colrv1-08.html b/layout/reftests/font-face/colrv1-08.html new file mode 100644 index 0000000000..c6eb22a8fd --- /dev/null +++ b/layout/reftests/font-face/colrv1-08.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> +<meta charset=utf-8> +<title>COLRv1 font test: linear gradient with degenerate color line</title> +<style> +@font-face { + font-family: CAhem; + src: url("CAhem.ttf"); +} +span { font: 50px/1 CAhem; } +div:nth-child(1) span { font-variation-settings: "COL1" -2.0, "COL2" -2.0, "COL3" -2.0; } +div:nth-child(2) span { font-variation-settings: "COL1" -1.5, "COL2" -1.5, "COL3" -1.5; } +div:nth-child(3) span { font-variation-settings: "COL1" -1.0, "COL2" -1.0, "COL3" -1.0; } +div:nth-child(4) span { font-variation-settings: "COL1" -0.5, "COL2" -0.5, "COL3" -0.5; } +div:nth-child(5) span { font-variation-settings: "COL1" 0.0, "COL2" 0.0, "COL3" 0.0; } +div:nth-child(6) span { font-variation-settings: "COL1" 0.5, "COL2" 0.5, "COL3" 0.5; } +div:nth-child(7) span { font-variation-settings: "COL1" 1.0, "COL2" 1.0, "COL3" 1.0; } +div:nth-child(8) span { font-variation-settings: "COL1" 1.5, "COL2" 1.5, "COL3" 1.5; } +div:nth-child(9) span { font-variation-settings: "COL1" 2.0, "COL2" 2.0, "COL3" 2.0; } +</style> + +<div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> + <div><span>!</div> +</div> |