<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: font-size inheritance</title>
  <style type="text/css">
   .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; color: white; }
   .a { font-size: 32px; }
   .c { font-family: Ahem; line-height: 32px; height: 32px; width: 128px; background: red; color: green; }
  </style>
 </head>
 <body>
  <div class="control">Ahem_font_required_for_this_test.</div>

  <div class="a">
   <div class="b">
     <div class="c">
       FAIL
     </div>
   </div>
  </div>

 </body>
</html>
