blob: 5d4298f6dfeac66626b846c8beb5492371d149e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<title>Test for SVG glyphs being used in HTML content</title>
<style>
@font-face {
font-family: "Liberation";
src: url(resources/svg.woff);
}
html { width: 400px; height: 400px; background-color: white; }
body { margin: 0; }
div { font: 200px Liberation; color: fuchsia; line-height: 1; stroke: none; }
</style>
<div>b</div>
|