chromium/third_party/blink/web_tests/css2.1/t0505-c16-descendant-01-e.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: Contextual selectors</title>
  <style type="text/css">
   ul {color: green;}
   p {color: red;}
   html body div p {color: green;}
   span, ul li li {color: red;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#descendant-selectors" title="5.5 Descendant selectors">
 </head>
 <body>
  <div><p> This line should be green. </p></div>
  <ul>
   <li>
    <span> </span> This line should be green.
   </li>
  </ul>
 </body>
</html>