css3-modsel-50.xml (776B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>NEGATED attribute existence selector</title> 4 <style type="text/css"><![CDATA[@namespace a url(http://www.example.org/a); 5 a|* { color : red ; display : block ; margin-bottom : 1em } 6 div.stub *|*:not([test]) { color : lime }]]></style> 7 <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/> 8 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found --> 9 <meta name="flags" content=" namespace" /> 10 </head> 11 <body> 12 <div class="stub"> 13 <q xmlns="http://www.example.org/a" test="1"> 14 <r>This text should be in green characters</r> 15 </q> 16 <s xmlns="http://www.example.org/a">This text should be in green characters</s> 17 </div> 18 </body> 19 </html>