summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/woff2-totalsfntsize.html
blob: 85be1a2d0dc4668d9b21501473ce60df482e1da4 (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
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
    font-family: "webfont";
    src: url("../fonts/header-totalsfntsize-001.woff2") format("woff2");
}
#container {
	width: 100px;
	height: 38px;
	position: relative;
    overflow: hidden;
}
#test {
    font: 41px "webfont";
    position: absolute;
    width: 41px;
    height: 41px;
    left: -1px;
    top: -1px;
}
</style>
</head>
<body>
This test makes sure WOFF2 renders as expected. The test passes if you see the word PASS below.
<div id="container"><div id="test">P</div></div>
</body>
</html>