lol_html 1.2.1

Streaming HTML rewriter/parser with CSS selector-based API
Documentation
<html><head>
  <title>NEGATED More than one class selector</title>
  <style type="text/css">
p { background: green; color: white; }
p:not(.t1):not(.t2) { background: red; color: yellow; }
div { background: red; color: yellow; }
div:not(.t1) { background: green; color: white; }
address { background: green; color: white; }
address:not(.t5):not(.t5) { background: red; color: yellow; }
</style>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"> <!-- bogus link to make sure it gets found -->
  <meta name="flags" content="">
 </head>
 <body>
  <p class="t1 t2">This line should be green.</p>
  <!--[ELEMENT('div')]--><div class="t3"><!--[TEXT('div')]-->This line should be green.<!--[/TEXT('div')]--></div><!--[/ELEMENT('div')]-->
  <address class="t4 t5 t6">This line should be green.</address>

</body></html>