1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
4 <title>Dynamic handling of :empty</title>
5 <style type="text/css"><![CDATA[
6 #test1 { background: red; display: block; padding: 1em; margin: 1em; }
7 #test1:empty { background: lime; }
8 #test2 { background: lime; display: block; padding: 1em; margin: 1em; }
9 #test2:empty { background: red; }
11 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
12 <link rel="prev" href="css3-modsel-d1.xml" title="NEGATED Dynamic handling of :empty"/>
13 <link rel="next" href="css3-modsel-d2.xml" title="Dynamic handling of combinators"/>
14 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
15 <link rel="up" href="./index.html"/>
16 <link rel="top" href="../../index.html"/>
22 <script type="text/javascript">
26 document.getElementById('test1').appendChild(document.createTextNode(''));
27 document.getElementById('test2').appendChild(document.createTextNode(' '));
34 <p> The following two bars should be green. </p>
36 <div id="test1"></div>
37 <div id="test2"></div>