<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Parsing: Negative Font-Size</title>
  <style type="text/css">
   test { font-size: 20px; font-size: -10px; display: block; width: 100px; height: 40px; background: red; }
   test > em { width: 5em; height: 1em; background: green; display: block; }
   test > px { width: 100px; height: 20px; background: green; display: block; }
  </style>
 </head>
 <body>
  <test xmlns="http://www.example.org/">
   <em/>
   <px/>
  </test>
 </body>
</html>
