tor-browser

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

syntax-016.xml (715B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
      4  <link rel="author" title="Disruptive Innovations SAS" href="http://disruptive-innovations.com/"/>
      5  <link rel="help" href="http://www.w3.org/TR/css-namespaces-3/#syntax"/>
      6  <title>CSS Namespaces Test Suite: @namespace and other rules ordering</title>
      7  <style>
      8    @namespace test url("test");
      9    @media all {
     10      test|test { background-color: lime; }
     11    }
     12    @namespace test2 url("test");
     13    test2|test { background: red }
     14  </style>
     15 </head>
     16 <body>
     17  <p>
     18    <test xmlns="test">This sentence should have a green
     19                       background.</test>
     20  </p>
     21 </body>
     22 </html>