2009-01-06 20:45:41 -08:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: "Fontin-Sans SC";
|
2009-01-08 00:36:24 -08:00
|
|
|
/* the font url below is correct but won't be accessed due to cross-site restrictions */
|
|
|
|
src: url(../../reftests/fonts/markA.ttf) format("opentype");
|
2009-01-06 20:45:41 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
</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>
|