Merge mozilla-central to autoland. a=merge CLOSED TREE
[gecko.git] / layout / reftests / font-loading-api / ex-unit-1.html
blob652cbfda11cdcfa5f19a645fdd2dae779bd83ab4
1 <!DOCTYPE html>
2 <!-- modeled on ../font-face/ex-unit-1.html -->
3 <html class="reftest-wait">
4 <title>ex unit with Ahem font</title>
5 <style>
6 html { background: white; }
7 body { font-family: Ahhhem; font-size: 50px; height: 2ex; width: 2ex; background: blue; }
8 </style>
9 <script>
10 document.fonts.add(new FontFace("Ahhhem", "url(../fonts/Ahem.ttf)"));
11 document.fonts.ready.then(function() { document.documentElement.className = ""; });
12 </script>