mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-tests Load Ahem as a webfont everywhere (part 2) (#17173) This change updates a large number of reftests to link to the `/fonts/ahem.css` stylesheet. Each file contains a single additional line before the first `<style>` element: ``` <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> ``` -- wp5At-commits: 9c780585758acf5e9ac6d17ad9bd03c83404c7e6 wpt-pr: 17173
73 lines
1.1 KiB
HTML
73 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="KISAKA Toshihiro" href="mailto:toshihiro@kisaka.jp">
|
|
<meta name="flags" content="ahem">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style type="text/css">
|
|
div {
|
|
writing-mode: vertical-rl;
|
|
}
|
|
|
|
div p {
|
|
background: yellow;
|
|
color: blue;
|
|
font: 20px/1 Ahem;
|
|
height: 6em;
|
|
margin: 10px;
|
|
white-space: pre;
|
|
width: 6em;
|
|
}
|
|
|
|
div p:nth-child(2) {
|
|
background: pink;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Upper three blocks are identical to the lower three blocks including each character positions.</p>
|
|
|
|
<div>
|
|
<p>ab cd
|
|
e fg h
|
|
i jkl
|
|
mn
|
|
o q rs
|
|
t uv</p>
|
|
<p> h s
|
|
d l r
|
|
cgk v
|
|
fj qu
|
|
b n
|
|
aeimot</p>
|
|
<p>ab cd
|
|
e fg h
|
|
i jkl
|
|
mn
|
|
o q rs
|
|
t uv</p>
|
|
</div>
|
|
|
|
<div>
|
|
<p>ab cd
|
|
e fg h
|
|
i jkl
|
|
mn
|
|
o q rs
|
|
t uv</p>
|
|
<p> h s
|
|
d l r
|
|
cgk v
|
|
fj qu
|
|
b n
|
|
aeimot</p>
|
|
<p>ab cd
|
|
e fg h
|
|
i jkl
|
|
mn
|
|
o q rs
|
|
t uv</p>
|
|
</div>
|
|
</body>
|
|
</html>
|