-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detech unused slnt variation axis ranges
- Loading branch information
1 parent
1208259
commit dc4be15
Showing
7 changed files
with
161 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+1.58 MB
...s/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
testdata/subsetFonts/variable-font-unused-slnt-axis/normal.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<head> | ||
<meta charset=utf-8> | ||
<link rel="stylesheet" href="styles.css"> | ||
<style> | ||
p { | ||
font-size: 100px; | ||
font-family: MyFontFamily, sans-serif; | ||
font-style: normal; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>Hello, world!</p> | ||
</body> | ||
</html> |
21 changes: 21 additions & 0 deletions
21
testdata/subsetFonts/variable-font-unused-slnt-axis/normal_and_oblique.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<html> | ||
<head> | ||
<meta charset=utf-8> | ||
<link rel="stylesheet" href="styles.css"> | ||
<style> | ||
p { | ||
font-size: 100px; | ||
font-family: MyFontFamily, sans-serif; | ||
font-style: normal; | ||
} | ||
|
||
.oblique { | ||
font-style: oblique; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>Hello, world!</p> | ||
<p class="oblique"">Hello, world!</p> | ||
</body> | ||
</html> |
16 changes: 16 additions & 0 deletions
16
testdata/subsetFonts/variable-font-unused-slnt-axis/oblique.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<head> | ||
<meta charset=utf-8> | ||
<link rel="stylesheet" href="styles.css"> | ||
<style> | ||
p { | ||
font-size: 100px; | ||
font-family: MyFontFamily, sans-serif; | ||
font-style: oblique; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>Hello, world!</p> | ||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
testdata/subsetFonts/variable-font-unused-slnt-axis/styles.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@font-face { | ||
font-family: MyFontFamily; | ||
src: url('RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf') | ||
format('woff2-variations'); | ||
} |