Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-remote.html
blob5e1b01f7055d1ff7815faf8291ec40ed53f73099
1 <head>
2 <style>
3 @font-face {
4 font-family: 'remote';
5 src: url(../../resources/Ahem.ttf);
8 div { width: 100px; height: 100px; background-color: red; font-family: 'remote'; font-size: 20px; color: green; }
9 </style>
10 </head>
11 <body onload="finished()">
12 <div>
13 FAIL_<br>
14 XXXXX<br>
15 XXXXX<br>
16 XXXXX<br>
17 _FAIL<br>
18 </div>
19 <script>
20 if (window.testRunner)
21 testRunner.waitUntilDone();
23 // Kick off loading of the font
24 document.body.offsetTop;
26 function finished()
28 if (window.testRunner)
29 testRunner.notifyDone();
31 </script>
32 </body>