chromium/third_party/blink/web_tests/css2.1/t1507-c526-font-sz-02-b-a.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: font-size</title>
  <script src="../resources/ahem.js"></script>
  <style type="text/css">
   .ahem { font: 1em/1 Ahem; color: navy; }
   .f {font-size: 2em;}
   .g {font-size: 2.5ex;}
   .i {font-size: 200%;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props" title="15.7 Font size: the 'font-size' property">
 </head>
 <body>
  <p>There should be a solid single uninterrupted smooth column of blue below.</p>
  <div class="ahem">
   <div class="f"> x </div>
   <div class="g"> x </div>
   <div class="i"> x </div>
  </div>
 </body>
</html>