summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-features/subsuper-nofallback-notref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/font-features/subsuper-nofallback-notref.html')
-rw-r--r--layout/reftests/font-features/subsuper-nofallback-notref.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/font-features/subsuper-nofallback-notref.html b/layout/reftests/font-features/subsuper-nofallback-notref.html
new file mode 100644
index 0000000000..5dfd66218b
--- /dev/null
+++ b/layout/reftests/font-features/subsuper-nofallback-notref.html
@@ -0,0 +1,34 @@
+<!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 }
+</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>