chromium/third_party/blink/web_tests/css2.1/t1507-c526-font-sz-01-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">
   div { color: navy; font: 1em/1 Ahem; margin: 0 2em; }
   .a {font-size: 0.5in;}
   .b {font-size: 1.27cm;}
   .c {font-size: 12.7mm;}
   .d {font-size: 36pt;}
   .e {font-size: 3pc;}
   .h {font-size: 48px;}
  </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="a"> x </div>
  <div class="b"> x </div>
  <div class="c"> x </div>
  <div class="d"> x </div>
  <div class="e"> x </div>
  <div class="h"> x </div>
 </body>
</html>