diff options
Diffstat (limited to 'layout/reftests/font-face/colrv1-02.html')
-rw-r--r-- | layout/reftests/font-face/colrv1-02.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/font-face/colrv1-02.html b/layout/reftests/font-face/colrv1-02.html new file mode 100644 index 0000000000..14cee4feb5 --- /dev/null +++ b/layout/reftests/font-face/colrv1-02.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<meta charset=utf-8> +<title>COLRv1 font test: using the tech() function</title> +<style> +@font-face { + font-family: CAhem; + src: url("../fonts/fira/FiraSansOT-RegularItalic.otf"); /* if tech() is not parsed */ + src: url("CAhem.ttf") tech(color-COLRv1), + url("../fonts/fira/FiraSans-Regular.otf"); +} +#test { font: 100px/1 CAhem, serif; margin: 10px; padding: 10px; } +</style> + +<!-- This should render using CAhem if COLRv1 is enabled, and FiraSans if disabled. + If the tech() function fails to parse at all, we'll get Fira Italic. --> +<div id="test">ABC</div> |