diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/font-features/subsuper-nofallback-ref1.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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> |