blob: d9fcd1cbf5e7e2c43c76cf1a78ce394a1bb45fee (
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>
<style>
@font-face {
font-family: test;
src: url("resources/bug1320197-testFont2.ttf");
}
div {
font: 600px/1 test;
width: 1em;
height: 1em;
border: 10px solid silver;
position: absolute;
}
</style>
<p>There should be no purple visible at any of the edges of the black square.</p>
<div></div>
<div></div>
|