blob: c93fc86c94e8b68725541f2cd4dcd5c7ead9368e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SVG-in-OT bitmap issue</title>
<style>
@font-face {
font-family: test;
src: url("resources/svg-bitmap.ttf");
}
span {
white-space: pre;
}
.a {
background: red;
}
.b {
background: yellow;
}
.c {
background: blue;
}
</style>
</head>
<body>
<div style="font: 32px/1 test, serif">
x <span class=a> </span><span class=b> </span><span class=c> </span> x
</div>
</body>
</html>
|