Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / selectors / 043b.html
blobf20e9e6c7dfe242bba8a59dc0f8cb9d026f3de96
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>Descendant combinator</title>
5 <style type="text/css">.white { background-color: transparent ! important; }
6 .green { background-color: lime; }
7 div.t1 p { background-color: red; }</style>
8 <link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
9 <link rel="prev" href="css3-modsel-43.html" title="Descendant combinator">
10 <link rel="next" href="css3-modsel-44.html" title="Child combinator">
11 <link rel="last" href="css3-modsel-d5e.html" title="NEGATED :indeterminate with :checked">
12 <link rel="up" href="./index.html">
13 <link rel="top" href="../../index.html">
14 </head>
15 <body>
16 <div class="t1">
17 <p class="white">This paragraph should be unstyled</p>
18 <table>
19 <tbody>
20 <tr>
21 <td>
22 <p class="white">This paragraph should be unstyled</p>
23 </td>
24 </tr>
25 </tbody>
26 </table>
27 </div>
28 <table>
29 <tbody>
30 <tr>
31 <td>
32 <p class="green">This paragraph should have a green background</p>
33 </td>
34 </tr>
35 </tbody>
36 </table>
37 </body>
38 </html>