chromium/third_party/blink/web_tests/css2.1/t1205-c563-list-type-00-b.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: list-style-type</title>
  <style type="text/css">
   body { color: navy; }
   .one {list-style-type: disc;}
   .two {list-style-type: circle;}
   .three {list-style-type: square;}
   .nine {list-style-type: none; color: red;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
 </head>
 <body>
  <p>Each bullet should look as described, and there should be no red present.</p>
  <ul class="one">
   <li>disc</li>
   <li>disc</li>
   <li>disc</li>
  </ul>
  <ul class="two">
   <li>circle</li>
   <li>circle</li>
   <li>circle</li>
  </ul>
  <ul class="three">
   <li>square</li>
   <li>square</li>
   <li>square</li>
  </ul>
  <ul class="nine">
   <li> </li>
   <li> </li>
   <li> </li>
  </ul>
 </body>
</html>