list-style-image-004.xht (1177B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 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="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-03-06 --> 8 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/list/list-style-image/001.xml" type="application/xhtml+xml"/> 9 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/list/list-style-image/001.html" type="text/html"/> 10 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#list-style" /> 11 <link rel="match" href="list-style-image-004-ref.xht" /> 12 13 <style type="text/css"> 14 .no { list-style-image: url(404); } 15 </style> 16 </head> 17 <body> 18 <p>There should be a numbered list with three similarly formatted list items below.</p> 19 <ol> 20 <li> One.</li> 21 <li class="no"> Two.</li> 22 <li> Three.</li> 23 </ol> 24 </body> 25 </html>