-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathvariable-avar2-warp.html
More file actions
42 lines (39 loc) · 1.16 KB
/
variable-avar2-warp.html
File metadata and controls
42 lines (39 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html class="reftest-wait">
<title>Avar2 Designspace warping tested against avar1 reference</title>
<link rel="help" href="https://www.iso.org/standard/87621.html" />
<link rel="match" href="variable-avar2-warp-ref.html" />
<link rel="mismatch" href="variable-avar2-warp-mismatch.html" />
<meta charset="utf-8" />
<style>
@font-face {
font-family: avar2test_avar2;
src: url(../resources/avar/DesignSpaceWarpTestAvar2[opsz\,wdth\,wght].ttf);
}
body {
font-family: avar2test_avar2, sans-serif;
font-size: 200px;
}
.light-expanded {
font-variation-settings:
"wght" 100,
"wdth" 125;
}
.bold-condensed {
font-variation-settings:
"wght" 900,
"wdth" 75;
}
</style>
<!-- The DesignSpaceWarpTestAvar2 re-implements the DesignSpaceWarpTestAvar1
font, using an avar format 2 VarStore and deltas applied to design axes.
-->
H
<span class="light-expanded">H</span>
<span class="bold-condensed">H</span>
<script>
document.fonts.ready.then(() => {
document.documentElement.classList.remove("reftest-wait");
});
</script>
</html>