<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Multiple backgrounds: Painting order</title>
  <style type="text/css">
   body { color: navy; }
   div, span, tr { background-image: url(/resources/images/1x1-green), url(/resources/images/1x1-red); background-color: red; color: white; }
  </style>
 </head>
 <body>
  <p>There should be several times the word PASS below, in differently sized boxes.</p>
  <div>PASS</div>
  <p><span>PASS</span></p>
  <table><tr><td>PASS</td></tr></table>
 </body>
</html>