<?xml-stylesheet href="../../../style/xml-full.css" type="text/css"?>
<?xml-stylesheet href="css3-modsel-77.css" type="text/css"?>
<test xmlns:xlink="http://www.w3.org/1999/xlink">
 <title>NEGATED :first-child pseudo-class</title>
 <author>Daniel Glazman</author>
 <metadata>
  <item> <name>CSS 3 Module</name> <data>W3C Selectors</data> </item>
  <item> <name>Next</name> <data xlink:type="simple" xlink:href="css3-modsel-78.xml">NEGATED :last-child pseudo-class</data> </item>
  <item> <name>Previous</name> <data xlink:type="simple" xlink:href="css3-modsel-76.xml">NEGATED :nth-last-of-type() pseudo-class</data> </item>
  <item> <name>Test #</name> <data>77 of 143</data> </item>
  <item> <name>Testing</name> <data>NEGATED :first-child pseudo-class</data> </item>
  <item> <name>ID</name> <data>77</data> </item>
  <item> <name>Date</name> <data>11-july-2001</data> </item>
  <item> <name>Revision</name> <data>1.0</data> </item>
 </metadata>
  <content xmlns:a="http://www.example.org/a" xmlns:b="http://www.example.org/b" xmlns:html="http://www.w3.org/1999/xhtml">
<div xmlns="http://www.w3.org/1999/xhtml" align="center">
<table class="t1" border="1">
  <tr>
    <td>1.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
  <tr>
    <td>2.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
  <tr>
    <td>3.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
</table>
</div>
<p xmlns="http://www.w3.org/1999/xhtml">This paragraph should NOT AT ALL
          <span>have a green background</span>
</p>
</content>
  <source>
   <css>.red { background-color : red }
.t1 td:not(:first-child) { background-color : lime }
p > *:not(:first-child) { background-color : lime }
table.t1 td { border : thin black solid }
</css>
   <xml>
&lt;div xmlns="http://www.w3.org/1999/xhtml" align="center">
&lt;table class="t1" border="1">
  &lt;tr>
    &lt;td>1.1&lt;/td>
    &lt;td class="red">green cell&lt;/td>
    &lt;td class="red">green cell&lt;/td>
  &lt;/tr>
  &lt;tr>
    &lt;td>2.1&lt;/td>
    &lt;td class="red">green cell&lt;/td>
    &lt;td class="red">green cell&lt;/td>
  &lt;/tr>
  &lt;tr>
    &lt;td>3.1&lt;/td>
    &lt;td class="red">green cell&lt;/td>
    &lt;td class="red">green cell&lt;/td>
  &lt;/tr>
&lt;/table>
&lt;/div>
&lt;p xmlns="http://www.w3.org/1999/xhtml">This paragraph should NOT AT ALL
          &lt;span>have a green background&lt;/span>
&lt;/p>
</xml>
  </source>
</test>