<!DOCTYPE HTML> <html> <head> <title>Test of fonts with funky fullnames</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> @font-face { font-family: test1; src: url(../fonts/markA-badfullname.ttf); } @font-face { font-family: test2; src: url(../fonts/markA-shortfullname.ttf); } body { margin: 50px; font-size: 12pt; font-family: Gill Sans, Futura, sans-serif; } p.test1 { font-size: 48pt; font-family: test1, Futura, sans-serif; } p.test2 { font-size: 48pt; font-family: test2, Futura, sans-serif; } </style> </head> <body> <p>Letter A should <strong>not</strong> appear below:</p> <p class="test1">A</p> <p class="test2">A</p> </body> </html>