blob: 16826307c8335c8a30ae551baeb5bcc793768c73 (
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>4q;n</span>
<span>4q;n</span>
<span>4w;n</span>
<span>4w;n</span>
<span>4y;x</span>
<span>4y;x</span>
<span>4y;x</span>
<span>4u;x</span>
<span>4u;x</span>
<script>
document.fonts.ready.then(
() => { document.documentElement.classList.remove("reftest-wait"); });
</script>
</html>
|