<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>NEGATED :nth-of-type() pseudo-class</title>
  <style type="text/css"><![CDATA[.green { background-color : lime ! important }
p:not(:nth-of-type(3)) { background-color : red }
dl > *:not(:nth-of-type(3n+1)) { background-color : red }
]]></style>
  <link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
 <script src="/resources/testharness.js"></script>
   <script src="/resources/testharnessreport.js"></script>
   <script src="common.js"></script>
  </head>
  <body>
<p id="t1" class="green">This paragraph should have green background</p>
<address id="u1">And this address should be unstyled.</address>
<p id="t2" class="green">This paragraph should also have green background!</p>
<p id="u2">But this one should be unstyled again.</p>
<dl>
  <dt id="u3">First definition term</dt>
    <dd id="u4">First definition</dd>
  <dt id="t3" class="green">Second definition term that should have green background</dt>
    <dd id="t4" class="green">Second definition that should have green background</dd>
  <dt id="t5" class="green">Third definition term that should have green background</dt>
    <dd id="t6" class="green">Third definition that should have green background</dd>
  <dt id="u5">Fourth definition term</dt>
    <dd id="u6">Fourth definition</dd>
  <dt id="t7" class="green">Fifth definition term that should have green background</dt>
    <dd id="t8" class="green">Fifth definition that should have green background</dd>
  <dt id="t9" class="green">Sixth definition term that should have green background</dt>
    <dd id="t10" class="green">Sixth definition that should have green background</dd>
</dl>
<script><![CDATA[
test(function() {
  for (let i = 1; i <= 10; ++i) {
    assert_background_color(`t${i}`, LIME, `t${i} should be green`);
  }
  for (let i = 1; i <= 6; ++i) {
    assert_not_background_color(`u${i}`, RED, `u${i} should not be red`);
  }
}, 'NEGATED :nth-of-type() pseudo-class');
]]></script>
</body>
</html>
