Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / selectors / cousin-stylesharing-last-child-selector-expected.html
blob933544f54fd414d15489e3c6212d34a58ccfc6e1
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>Bug #105672 - last child</title>
6 <meta name="viewport" content="width=device-width">
7 <style type="text/css">
10 table {
11 font-size: 1em;
12 border-collapse: collapse;
13 border: 1px solid #777;
14 margin: 1em 5%;
16 th, td {
17 border: 1px solid #777;
20 td.lastcell { color: red; }
21 </style>
24 </head>
26 <body>
28 <table>
29 <tbody>
30 <tr><td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
31 <tr><td>cell</td><td>cell other</td><td class=lastcell>more cell</td></tr>
32 <tr><td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
33 <tr><td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
34 </tbody>
35 </table>
37 <table>
38 <tbody>
39 <tr>
40 <td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
41 <tr>
42 <td>cell</td><td>cell other</td><td class=lastcell>more cell</td></tr>
43 <tr>
44 <td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
45 <tr>
46 <td>cell</td><td>other cell</td><td class=lastcell>more cell</td></tr>
47 </tbody>
48 </table>
50 </body>
51 </html>