css3-modsel-91.xml (646B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>Type element selector with declared namespace</title> 4 <style type="text/css"><![CDATA[@namespace test url(http://www.example.org/a); 5 testa { background-color : red } 6 test|testa { background-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 <testa xmlns="http://www.example.org/a">This paragraph should have a green background</testa> 13 </body> 14 </html>