<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>Multiple backgrounds: Different layer counts</title>
  <style type="text/css">
   body { color: navy; }
   div { background: red; height: 200px; width: 400px; }
   div { background-image: url(http://404.example.org/), url(http://404.example.org/), url(http://404.example.org/); }
   div { background-color: navy; }
   div { background-repeat: repeat, no-repeat; }
   div:hover { background-image: url(/resources/images/1x1-green); }
  </style>
 </head>
 <body>
  <p>There should be a green box below after you hover it (but it should never be red).</p>
  <div></div>
 </body>
</html>