blob: 0d0e273db42241d478c87da31773c4ee2a81d1e0 (
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
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
@font-face {
font-family: "Fontin-Sans SC";
/* the font url below is correct but won't be accessed due to cross-site restrictions */
src: url(../../reftests/fonts/markA.ttf) format("opentype");
}
</style>
<script type="text/javascript">
function boom()
{
document.getElementById("r").style.fontFamily = "'Fontin-Sans SC'";
document.documentElement.offsetHeight;
document.removeChild(document.documentElement);
}
</script>
</head>
<body onload="boom();"><div id="r">R</div></body>
</html>
|