mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
20 lines
413 B
HTML
20 lines
413 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<meta charset="utf-8">
|
|
<style>
|
|
@font-face {
|
|
font-family: variabletest_box;
|
|
src: url(resources/variabletest_box.ttf);
|
|
}
|
|
|
|
body {
|
|
font-family: variabletest_box, sans-serif;
|
|
font-size: 200px;
|
|
}
|
|
</style>
|
|
▄ ▀
|
|
<script>
|
|
document.fonts.ready.then(
|
|
() => { document.documentElement.classList.remove("reftest-wait"); });
|
|
</script>
|
|
|