1
0
Fork 0
firefox/testing/web-platform/tests/css/css-fonts/separators.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
No EOL
765 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="separators-ref.html">
<link rel="help" href="https://www.unicode.org/faq/unsup_char.html#2"/>
<link rel="assert" title="Line and paragraph separator should be displayed as space">
<title>Line and paragraph separator rendering</title>
<style>
@font-face {
font-family: test;
src: url(resources/separator-test-font.ttf) format("truetype");
}
p {
font-size: 30px;
}
</style>
<body>
<p>&#x0056&#x0020&#x004f</p>
<p>&#x0056&#x2028&#x004f</p>
<p>&#x0056&#x2029&#x004f</p>
<p style="font-family: test;">&#x0056&#x0020&#x004f</p>
<p style="font-family: test;">&#x0056&#x2028&#x004f</p>
<p style="font-family: test;">&#x0056&#x2029&#x004f</p>
</body>