Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-unquoted-local-expected.html
blobf337865fb0f987649166f6d0653297ebd27224d4
1 <style>
2 @font-face {
3 font-family: ahem;
4 src: url(../../resources/Ahem.ttf);
6 </style>
7 <p>This test ensures that unquoted font names are allowed in local().</p>
9 <p>The text below should be a series of black boxes.</p>
10 <p style="font-family: ahem;">FAIL</p>
12 <p>The text below should not be a series of black boxes.</p>
13 <p>SUCCESS</p>
15 <script>
16 if (window.testRunner) {
17 testRunner.waitUntilDone();
18 document.documentElement.offsetTop;
19 setTimeout(function() { testRunner.notifyDone(); }, 200);
21 </script>