css3-modsel-93.xml (723B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>Type element selector without declared namespace</title> 4 <style type="text/css"><![CDATA[@namespace test url(http://www.example.org/b); 5 *|testA { background-color : red } 6 |testA {background-color : lime }]]></style> 7 <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/> 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 <testA xmlns="">This paragraph has no declared namespace and should have a green background.</testA> 14 </body> 15 </html>