472237-1.html 593 B

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