chromium/third_party/blink/web_tests/css2.1/t1507-c526-font-sz-03-f-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">
   .j { font-size: 3em; color: navy; font-family: Ahem; }
   .a { font-size: 1em; }
   .b { font-size: 1em; font-size: -0.5in; }
   .j p { margin: 10px 30px; }
  </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>The two boxes below should be the same size.</p>
  <div class="j">
   <p class="a"> x </p>
   <p class="b"> x </p>
  </div>
 </body>
</html>