wpt / css / CSS2 / lists / list-style-image-007.html

Status: PASS | Duration: 15ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/CSS2/lists/list-style-image-007.html

<!doctype html>
<html
 <head>
  <title>CSS Test: CSS List Images: invalid</title>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
  <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style" >
  <link rel="match" href="list-style-image-007-ref.html">

  <style>
   .no { list-style-image: url(404); }
  </style>
 </head>
 <body>
  <p>There should be a bullet list with three similarly formatted list items below.</p>
  <ul>
   <li> One.</li>
   <li class="no"> Two.</li>
   <li> Three.</li>
  </ul>
 </body>
</html>

/css/CSS2/lists/list-style-image-007-ref.html

<!doctype html>
<html
 <head>
  <title>Reference: CSS List Images: invalid</title>
  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
 </head>
 <body>
  <p>There should be a bullet list with three similarly formatted list items below.</p>
  <ul>
   <li>One.</li>
   <li>Two.</li>
   <li>Three.</li>
  </ul>
 </body>
</html>