blob: 7589a15f12cfea38c185612cf76e9136355cfbd4 (
plain)
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<style>
@font-face {
font-family: variable_axes;
src: url("resources/variabletest_matching.ttf");
}
body {
font-family: variable_axes, sans-serif;
font-size: 80px;
}
</style>
<span>1y;n</span>
<span>1y;n</span>
<span>2y;n</span>
<span>2y;n</span>
<span>2y;n</span>
<span>6w;x</span>
<span>6w;x</span>
<span>7w;x</span>
<span>7w;x</span>
<script>
document.fonts.ready.then(
() => { document.documentElement.classList.remove("reftest-wait"); });
</script>
</html>
|