list-style-image-007.html (629B)
1 <!doctype html> 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="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style" > 8 <link rel="match" href="list-style-image-007-ref.html"> 9 10 <style> 11 .no { list-style-image: url(404); } 12 </style> 13 </head> 14 <body> 15 <p>There should be a bullet list with three similarly formatted list items below.</p> 16 <ul> 17 <li> One.</li> 18 <li class="no"> Two.</li> 19 <li> Three.</li> 20 </ul> 21 </body> 22 </html>