2007-12-23 17:38:11 -08:00
|
|
|
<html>
|
|
|
|
<head>
|
2010-03-08 02:10:50 -08:00
|
|
|
<style>
|
|
|
|
/* explicitly load a font that supports the "fi" ligature */
|
|
|
|
@font-face {
|
|
|
|
font-family: test;
|
|
|
|
src: url(../fonts/mplus/mplus-1p-regular.ttf);
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-family: test, serif;
|
2010-03-08 07:49:29 -08:00
|
|
|
padding: 20px;
|
2010-03-08 02:10:50 -08:00
|
|
|
}
|
|
|
|
</style>
|
2007-12-23 17:38:11 -08:00
|
|
|
<script>
|
|
|
|
function m()
|
|
|
|
{
|
|
|
|
document.body.offsetHeight;
|
|
|
|
var div = document.getElementById("div");
|
|
|
|
div.appendChild(document.createTextNode("i"));
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="m();">
|
2010-08-05 02:18:37 -07:00
|
|
|
<div id="div" style="font-size: 40px"><span>if</span></div>
|
2007-12-23 17:38:11 -08:00
|
|
|
</body>
|
|
|
|
</html>
|