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