ladybird/Tests/LibWeb/Ref/input/unicode-range.html
Sam Atkins b7efb61fbe Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
Now each test type has the same directories:
- input
- expected
- data

Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00

21 lines
471 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="match" href="../expected/unicode-range-ref.html" />
<style>
@font-face {
font-family: 'HashFont';
src: url('../../Assets/HashSans.woff');
unicode-range: U+0041; /* Only letter 'A' */
}
.text {
font-family: 'HashFont', 'SerenitySans';
font-size: 100px;
}
</style>
</head>
<body>
<div class="text">AB</div>
</body>
</html>