472237-1.html (593B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <style type="text/css"> 4 5 @font-face { 6 font-family: "Fontin-Sans SC"; 7 /* the font url below is correct but won't be accessed due to cross-site restrictions */ 8 src: url(../../reftests/fonts/markA.ttf) format("opentype"); 9 } 10 11 </style> 12 13 <script type="text/javascript"> 14 15 function boom() 16 { 17 document.getElementById("r").style.fontFamily = "'Fontin-Sans SC'"; 18 document.documentElement.offsetHeight; 19 document.removeChild(document.documentElement); 20 } 21 22 </script> 23 </head> 24 25 <body onload="boom();"><div id="r">R</div></body> 26 </html>