blob: b6dd5db7f148db7ddeab6980ca6570c40af20df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!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>
|