mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
21 lines
458 B
HTML
21 lines
458 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;
|
|
sans-serif;
|
|
font-size: 100px;
|
|
}
|
|
</style>
|
|
M̻ N̻ O̻
|
|
<script>
|
|
document.fonts.ready.then(
|
|
() => { document.documentElement.classList.remove("reftest-wait"); });
|
|
</script>
|
|
</html>
|