css3-modsel-153.xml (755B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>:empty pseudo-class and CDATA</title> 4 <style type="text/css"><![CDATA[ 5 address { background: red; margin: 0; height: 1em; display: block; } 6 address:empty { background: lime; } 7 .text { margin: -1em 0 0 0; } 8 ]]></style> 9 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 10 <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found --> 11 <meta name="flags" content=" namespace" /> 12 </head> 13 <body> 14 <address xmlns="http://tests.example.org/xml-only/"><![CDATA[]]></address> 15 <div class="text">This line should have a green background.</div> 16 <p>(Note: This test is based on unpublished errata.)</p> 17 </body> 18 </html>