list-style-image-004

CSS List Images: invalid

WeasyPrint

This browser

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3  <head>
 4   <title>CSS Test: CSS List Images: invalid</title>
 5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 6   <link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
 7   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/list/list-style-image/001.xml" type="application/xhtml+xml">
 8   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/list/list-style-image/001.html" type="text/html">
 9   <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style">
10   <style type="text/css">
11    .no { list-style-image: url(404); }
12   </style>
13  </head>
14  <body>
15   <p>There should be a numbered list with three similarly formatted list items below.</p>
16   <ol>
17    <li> One.</li>
18    <li class="no"> Two.</li>
19    <li> Three.</li>
20   </ol>
21  </body>
22 </html>