lol_html 1.2.1

Streaming HTML rewriter/parser with CSS selector-based API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html><head>
  <title>NEGATED :focus pseudo-class</title>
  <style type="text/css">a:not(:focus) { background-color: transparent; }
a { background-color: lime; }
</style>
  <link rel="author" title="Daniel Glazman" href="http://glazman.org/">
  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"> <!-- bogus link to make sure it gets found -->
  <meta name="flags" content=" interact">
 </head>
 <body>
<p>The background color of all <!--[ELEMENT('a')]--><a href="#foo"><!--[TEXT('a')]-->anchors<!--[/TEXT('a')]--></a><!--[/ELEMENT('a')]-->
  should become <!--[ELEMENT('a')]--><a href="#foo"><!--[TEXT('a')]--> green<!--[/TEXT('a')]--></a><!--[/ELEMENT('a')]--> when they have the
  <!--[ELEMENT('a')]--><a href="#foo"><!--[TEXT('a')]-->focus<!--[/TEXT('a')]--></a><!--[/ELEMENT('a')]-->.</p>

</body></html>