chromium/third_party/blink/web_tests/css2.1/t1205-c561-list-displ-00-b.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: display</title>
  <style type="text/css">
   p, div { color: navy; }
   .one {display: block;}
   .two {display: inline;}
   .three {display: list-item; list-style-type: decimal; list-style-position: inside;}
   .four {display: none; color: yellow; background: red;}
   a {display: block;}
   .marker {unicode-bidi: isolate; font-variant-numeric: tabular-nums;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#display-prop" title="9.2.4 The 'display' property">
 </head>
 <body>
  <p class="pc">There should be eight numbered lines below, all identical except for the numbering, which should match the description. </p>
  <div class="three"> This should be line one. </div>
  <div class="one"><span class="marker"> 2. </span>This should be line two. </div>
  <div class="two"><span class="marker"> 3. </span>This should </div>
  <div class="two"> be line three. </div>
  <div><span class="marker"> 4. </span>This should be line four. </div>
  <div class="four"> FAIL: This text should not appear. </div>
  <div><span class="marker"> 5. </span>This should be line five. <span class="four">FAIL: This text should not appear.</span> </div>
  <div><span class="marker"> 6. </span>This should be line six. <a><span class="marker">7. </span>This should be line seven.</a><span class="marker"> 8. </span>This should be line eight. </div>
 </body>
</html>