summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/separators-ref.html
blob: d1d56f576f7dbb2ed120454c22396b48fca3bf3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<meta charset="utf-8">
<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&#x0020&#x004f</p>
    <p style="font-family: test;">&#x0056&#x0020&#x004f</p>
</body>