mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 14:32:55 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
21 lines
471 B
HTML
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>
|