<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: -moz-opacity nesting</title>
  <style type="text/css">
   .half { -moz-opacity: 0.5; }
   span { -moz-opacity: 1.0; }
  </style>
 </head>
 <body>
  <p>The "X"s in the middle of the following block should be darker than those on the edges.</p>
  <div><span class="half">XXX<span class="half">XXX<span class="half">XXX</span>XXX</span>XXX</span></div>
  <div><span class="half">XXX<span>XXX<span>XXX</span>XXX</span>XXX</span></div>
  <div><span class="half">XXX<span class="half">XXX<span class="half">XXX</span>XXX</span>XXX</span></div>
 </body>
</html>
