chromium/third_party/blink/web_tests/css2.1/20110323/height-applies-to-010a-expected.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>

 <head>

  <title>CSS Test: height set to 0 to elements with 'display' set to 'list-item'</title>

  <link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
  <link rel="author" title="Boris Zbarsky" href="[email protected]">
  <link rel="help" title="10.5 Content height: the 'height' property" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property">
  <link rel="help" title="11.1.1 Overflow: the 'overflow' property" href="http://www.w3.org/TR/CSS21/visufx.html#overflow">

  <meta content="" name="flags">
  <meta content="If height of content exceeds the set height of a block-level non-replaced element in normal flow (like a list-item element such as in this test), then the content should overflow according to the 'overflow' property." name="assert">

  <style type="text/css">
  div
  {
  color: green;
  display: list-item; 
  font: 2em/1 serif;
  margin-left: 1.25em;
  overflow: visible;
  }
  
  ul
  {
  height: auto;
  margin-top: 1em;
  overflow: visible;
  }  
  
  li
  {
  color: green;
  font: 2em/1 serif;
  overflow: visible;    
  }
  
  </style>

 </head>

 <body>

  <p>Test passes if <strong>3 green "PASS"</strong> are each preceded by a filled disc.</p>

  <div>PASS</div>

  <ul>
    <li>PASS</li>
  </ul>

  <ul>
    <li>PASS</li>
  </ul>

 </body>
</html>