Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / font-features / subsuper-fallback-omega.html
blobf27af2d4848ddd5583603915166c005e56088fee
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title>font-variant-position fallback</title>
5 <meta charset="UTF-8">
6 <style>
8 /* sups: 0-9 + - ( ) = subs: 0-9 + - ( ) */
9 @font-face {
10 font-family: subsuper;
11 src: url(../fonts/subsuper.woff); /* FiraSans with blank omega */
14 body {
15 margin: 20px;
16 font-family: subsuper, sans-serif;
19 p {
20 margin: 0;
21 font-size: 200px;
23 h4 { font-weight: normal }
24 span.sub { font-variant-position: sub }
25 span.super { font-variant-position: super }
26 </style>
27 </head>
28 <body>
29 <p>e<span class=super>2&omega;</span></p>
30 <p>e<span class=sub>2&omega;</span></p>
31 </body>
32 </html>