tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

css3-modsel-174b.xml (834B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <title>NEGATED Attribute selectors with multiple attributes</title>
      4  <style type="text/css"><![CDATA[
      5 tests, tests * { display: block; color: green }
      6 testA:not([*|attribute="pass"]) { color: red; }
      7 testB:not([*|attribute="pass"]) { color: red; }
      8 ]]></style>
      9  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
     10  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
     11  <meta name="flags" content=" namespace" />
     12 </head>
     13 <body>
     14  <tests xmlns="http://css.example.net/" xmlns:test="http://css.example.net/">
     15   <testA attribute="pass" test:attribute="fail">This should be green.</testA>
     16   <testB attribute="fail" test:attribute="pass">This should be green.</testB>
     17  </tests>
     18 </body>
     19 </html>