diff options
Diffstat (limited to 'layout/reftests/font-features/subsuper-nofallback-ref2.html')
-rw-r--r-- | layout/reftests/font-features/subsuper-nofallback-ref2.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/font-features/subsuper-nofallback-ref2.html b/layout/reftests/font-features/subsuper-nofallback-ref2.html new file mode 100644 index 0000000000..332e031777 --- /dev/null +++ b/layout/reftests/font-features/subsuper-nofallback-ref2.html @@ -0,0 +1,35 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>font-variant-position fallback</title> +<meta charset="UTF-8"> +<style> + +/* sups: 0-9 + - ( ) = subs: 0-9 + - ( ) */ +@font-face { + font-family: subsuper; + src: url(../fonts/subsuper-nofeat.woff); /* FiraSans with blank omega */ +} + +body { + margin: 20px; + font-family: subsuper, sans-serif; +} + +p { + margin: 0; + font-size: 75px; +} +h4 { font-weight: normal } + +</style> +</head> +<body> +<h4>All the subscripts and superscripts should display with variant glyphs:</h4> +<p> +<span class=sub>₃</span>C<span class=super>²</span> +<span class=sub>₍₃₎</span>C<span class=super>⁽²⁾</span> +<span class=sub>₂₁₊₃</span>C<span class=super>⁴⁵</span> +</p> +</body> +</html> |