blob: f2c35f43ff4d4049435dd1c165133cb423e38c8c (
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
30
31
32
33
34
35
36
37
38
39
40
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style id="s">
@font-face {
font-family: x;
src: url(bogus-font.ttf);
}
@font-face {
font-family: y;
src: url(bogus-font.ttf);
}
</style>
<script>
function boom()
{
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.font = 'normal 20px x';
document.getElementById("s").remove();
setTimeout(function() {
ctx.measureText("A");
}, 50);
}
window.addEventListener("DOMContentLoaded", boom)
</script>
</head>
<body><div style="font-family: y;">y</div></body>
</html>
|