<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: simple -moz-opacity test</title>
  <style type="text/css">
    div { position: absolute; width: 5em; height: 2.5em; }
    .a { background: green; }
    .b { background: red; -moz-opacity: 0; }
  </style>
 </head>
 <body>
  <p>The following block should be green:</p>
  <div class="a"/>
  <div class="b"/>
 </body>
</html>
