Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / html / css3-modsel-31.html
blob846b8ae096ca68b15e7a397d06a9f947aaa5aaa9
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>:nth-last-of-type() pseudo-class</title>
5 <style type="text/css">.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.html" title="Groups of selectors">
10 <link rel="prev" href="css3-modsel-30.html" title=":nth-of-type() pseudo-class">
11 <link rel="next" href="css3-modsel-32.html" title=":first-child pseudo-class">
12 <link rel="last" href="css3-modsel-d4.html" 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>