-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathfontface-from-arraybuffer.html
More file actions
33 lines (33 loc) · 1.25 KB
/
fontface-from-arraybuffer.html
File metadata and controls
33 lines (33 loc) · 1.25 KB
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
31
32
33
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>Constructing a FontFace from an ArrayBuffer should be equivalent to loading the same data from an URL</title>
<link rel="help" href="https://drafts.csswg.org/css-font-loading/#font-face-constructor">
<link rel="author" title="Simon Wülker" href="simon.wuelker@arcor.de">
<link rel=match href=fontface-from-arraybuffer-ref.html>
<link rel="help" href="https://github.com/servo/servo/issues/39657">
<script src="/common/reftest-wait.js"></script>
</head>
<body>
<canvas id="canvas" width="500px" height="500px"></canvas>
<script>
fetch("/fonts/Ahem.ttf")
.then(res => res.arrayBuffer())
.then(arrayBuffer => {
const ahem_font = new FontFace(
"FontFamily AhemTest",
arrayBuffer,
);
document.fonts.add(ahem_font);
ahem_font.load().then(
() => {
const ctx = canvas.getContext("2d");
ctx.font = '36px "FontFamily AhemTest"';
ctx.fillText("Ahem font loaded", 20, 50);
takeScreenshot();
}
);
});
</script>
</body>
</html>