Bug 1141676 - Reftest for sizing of synthetic sub/superscript glyphs. r=jdaggett

This commit is contained in:
Jonathan Kew 2015-03-11 08:49:51 +00:00
parent 4e2cda6f5a
commit 6eaeaefcb1
3 changed files with 74 additions and 0 deletions

View File

@ -117,3 +117,4 @@ HTTP(..) != subsuper-fallback-omega.html subsuper-fallback-omega-notref.html
HTTP(..) == subsuper-nofallback.html subsuper-nofallback-ref1.html
random-if(cocoaWidget) HTTP(..) == subsuper-nofallback.html subsuper-nofallback-ref2.html # bug 1139269
HTTP(..) != subsuper-nofallback.html subsuper-nofallback-notref.html
HTTP(..) == subsuper-fallback-size.html subsuper-fallback-size-ref.html

View File

@ -0,0 +1,36 @@
<!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: 10px;
font-size: 50px;
line-height: 2;
width: -moz-fit-content;
background: black;
}
h4 { font-weight: normal; }
span { font-size: 0.667em; } /* see NS_FONT_SUB_SUPER_SIZE_RATIO_LARGE */
</style>
</head>
<body>
<h4>The black bars should NOT be the same length</h4>
<p>&nbsp;XXXXXXXXXX&nbsp;</p>
<p>&nbsp;X<span>XXXXXXXX</span>X&nbsp;</p>
<p>&nbsp;X<span>XXXXXXXX</span>X&nbsp;</p>
</body>
</html>

View File

@ -0,0 +1,37 @@
<!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: 10px;
font-size: 50px;
line-height: 2;
width: -moz-fit-content;
background: black;
}
h4 { font-weight: normal; }
span.sub { font-variant-position: sub; }
span.super { font-variant-position: super; }
</style>
</head>
<body>
<h4>The black bars should NOT be the same length</h4>
<p>&nbsp;XXXXXXXXXX&nbsp;</p>
<p>&nbsp;X<span class=sub>XXXXXXXX</span>X&nbsp;</p>
<p>&nbsp;X<span class=super>XXXXXXXX</span>X&nbsp;</p>
</body>
</html>