Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-31.xml
blob1590af9d697f72bd2182f6ac88b0472db1d1fab1
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">
3  <head>
4   <title>:nth-last-of-type() pseudo-class</title>
5   <style type="text/css"><![CDATA[.red { background-color : red }
6 p:nth-last-of-type(3) { background-color : lime }
7 dl > :nth-last-of-type(3n+1) { background-color : lime }
8 ]]></style>
9   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
10   <link rel="prev" href="css3-modsel-30.xml" title=":nth-of-type() pseudo-class"/>
11   <link rel="next" href="css3-modsel-32.xml" title=":first-child pseudo-class"/>
12   <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
13   <link rel="up" href="./index.html"/>
14   <link rel="top" href="../../index.html"/>
15  </head>
16  <body>
17 <p class="red">This paragraph should have green background</p>
18 <address>But this address is here only to fill space in the dom..</address>
19 <p>So does this paragraph !</p>
20 <p>And so does this one too.</p>
21 <dl>
22   <dt>First definition term</dt>
23     <dd>First definition</dd>
24   <dt>Second definition term</dt>
25     <dd>Second definition</dd>
26   <dt class="red">Third definition term that should have green background</dt>
27     <dd class="red">Third definition that should have green background</dd>
28   <dt>Fourth definition term</dt>
29     <dd>Fourth definition</dd>
30   <dt>Fifth definition term</dt>
31     <dd>Fifth definition</dd>
32   <dt class="red">Sixth definition term that should have green background</dt>
33     <dd class="red">Sixth definition that should have green background</dd>
34 </dl>
35 </body>
36 </html>