haikuwebkit/LayoutTests/fast/css/font-face-unquoted-local-ex...

22 lines
524 B
HTML

<style>
@font-face {
font-family: ahem;
src: url(../../resources/Ahem.ttf);
}
</style>
<p>This test ensures that unquoted font names are allowed in local().</p>
<p>The text below should be a series of black boxes.</p>
<p style="font-family: ahem;">FAIL</p>
<p>The text below should not be a series of black boxes.</p>
<p>SUCCESS</p>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
document.documentElement.offsetTop;
setTimeout(function() { testRunner.notifyDone(); }, 200);
}
</script>