diff options
Diffstat (limited to 'layout/reftests/font-features/subsuper-nofallback-ref1.html')
-rw-r--r-- | layout/reftests/font-features/subsuper-nofallback-ref1.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/layout/reftests/font-features/subsuper-nofallback-ref1.html b/layout/reftests/font-features/subsuper-nofallback-ref1.html new file mode 100644 index 0000000000..2c015d026f --- /dev/null +++ b/layout/reftests/font-features/subsuper-nofallback-ref1.html @@ -0,0 +1,43 @@ +<!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.woff); /* FiraSans with blank omega */ +} + +body { + margin: 20px; + font-family: subsuper, sans-serif; +} + +p { + margin: 0; + font-size: 75px; +} +h4 { font-weight: normal } +span.super { + -webkit-font-feature-settings: "sups" on; + font-feature-settings: "sups" on; +} +span.sub { + -webkit-font-feature-settings: "subs" on; + font-feature-settings: "subs" on; +} + +</style> +</head> +<body> +<h4>All the subscripts and superscripts should display with variant glyphs:</h4> +<p> +<span class=sub>3</span>C<span class=super>2</span> +<span class=sub>(3)</span>C<span class=super>(2)</span> +<span class=sub>21+3</span>C<span class=super>45</span> +</p> +</body> +</html> |