diff options
Diffstat (limited to 'layout/reftests/font-features/caps-fallback-smcp.html')
-rw-r--r-- | layout/reftests/font-features/caps-fallback-smcp.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/font-features/caps-fallback-smcp.html b/layout/reftests/font-features/caps-fallback-smcp.html new file mode 100644 index 0000000000..ee29a4a813 --- /dev/null +++ b/layout/reftests/font-features/caps-fallback-smcp.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>font-variant-caps fallback</title> +<meta charset="UTF-8"> +<style> + +/* Fira Sans only supports smcp/c2sc, not pcap/c2pc */ +@font-face { + font-family: firasans; + src: url(../fonts/fira/FiraSans-Regular.otf); +} + +body { + margin: 20px; + font-family: firasans, sans-serif; +} + +p { + margin: 0; + font-size: 50px; +} + +.smcp { font-feature-settings: "smcp" on; } +</style> +</head> +<body> +<p class=smcp>Aa Bb Gg Δδ Γγ Σσ Бб Фф</p> +</body> +</html> |