<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: 3 simple tests of an impossible :not()</title>
  <style type="text/css">
    @namespace url(http://www.w3.org/1999/xhtml);
    *|* { color: green; display: block; margin: 0; padding: 0; }
    head { display: none; }
    *|*:not(*|*) { color: red; }
  </style>
 </head>
 <body>
  <div> This should be green. </div>
  <tests xmlns="http://www.example.org/"> This should be green. </tests>
  <tests xmlns=""> This should be green. </tests>  
 </body>
</html>
