tor-browser

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

css3-modsel-182.xml (575B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head>
      3  <title>Namespaces and \: in selectors</title>
      4  <style type="text/css"><![CDATA[
      5 p { color: green; }
      6 foo\:bar { background: red; color: yellow; }
      7 ]]></style>
      8  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      9  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
     10  <meta name="flags" content=" namespace" />
     11 </head>
     12 <body>
     13 <p>
     14 <foo:bar xmlns:foo="http://www.example.org/">
     15 This text should be green.
     16 </foo:bar>
     17 </p>
     18 </body>
     19 </html>