<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: Selector Parsing and Invalid Pseudo-Elements</title>
  <style type="text/css">
   p { background: white; color: green; }
   p:invalidPseudoClass, p.test1 { color: yellow; background: red; }
   p::invalidPseudoElement, p.test2 { color: yellow; background: red; }
  </style>
 </head>
 <body>
  <p class="test1">This should be green.</p>
  <p class="test2">This should be green.</p>
 </body>
</html>
