Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t0505-c16-descendant-01-e.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: Contextual selectors</title>
5   <style type="text/css">
6    ul {color: green;}
7    p {color: red;}
8    html body div p {color: green;}
9    span, ul li li {color: red;}
10   </style>
11   <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#descendant-selectors" title="5.5 Descendant selectors">
12  </head>
13  <body>
14   <div><p> This line should be green. </p></div>
15   <ul>
16    <li>
17     <span> </span> This line should be green.
18    </li>
19   </ul>
20  </body>
21 </html>