Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-18.xml
blobb06895acc3ae60c193ad672332a91599b5063ac8
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>:hover pseudo-class</title>
5   <style type="text/css"><![CDATA[p:hover { background-color : lime }
6 a:hover { background-color : lime }
8 tr:hover { background-color : green }
9 td:hover { background-color : lime }
11 table { border-spacing: 5px; }]]></style>
12   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
13   <link rel="prev" href="css3-modsel-17.xml" title=":visited pseudo-class"/>
14   <link rel="next" href="css3-modsel-18a.xml" title=":hover pseudo-class on links"/>
15   <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
16   <link rel="up" href="./index.html"/>
17   <link rel="top" href="../../index.html"/>
18  </head>
19  <body>
20 <p>The background color of this paragraph should turn to green when
21    the mouse pointer hovers either its text (<strong>here</strong>) or its whitespace background, <strong>here</strong>:</p>
22 <address>The background color of <a href="#foo">this anchor (<strong>here</strong>)</a> should turn to green when the pointing device hovers over it.</address>
23 <table>
24  <tbody>
25   <tr>
26    <td>The cells in</td>
27    <td>this table</td>
28    <td>should go</td>
29   </tr>
30   <tr>
31    <td>green when</td>
32    <td>you hover</td>
33    <td>the pointing</td>
34   </tr>
35   <tr>
36    <td>device over</td>
37    <td>them (<strong>here</strong>).</td>
38    <td></td>
39   </tr>
40   <tr>
41    <td>The rows in</td>
42    <td>this table</td>
43    <td>should go</td>
44   </tr>
45   <tr>
46    <td>dark green</td>
47    <td>when the</td>
48    <td>pointing device</td>
49   </tr>
50   <tr>
51    <td>is over the</td>
52    <td>cells <strong>there</strong>:</td>
53    <td></td> <!-- remove this cell to make an evil test; row should still go green, but cell should not -->
54   </tr>
55   <tr>
56    <td>And <strong>here</strong>:</td>
57    <td></td>
58    <td>(blank cells).</td>
59   </tr>
60  </tbody>
61 </table>
62 </body>
63 </html>