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