Status: FAIL | Duration: 14ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/CSS2/css1/c563-list-type-000.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: list-style-type</title> <link rel="help" href="http://www.w3.org/TR/REC-CSS1#list-style-type"/> <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/> <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> <link rel="match" href="c563-list-type-000-ref.xht" /> <style type="text/css"><![CDATA[ body { color: navy; } .one {list-style-type: disc;} .two {list-style-type: circle;} .three {list-style-type: square;} .nine {list-style-type: none; color: red;} ]]></style> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#lists" title="12.5 Lists"/> </head> <body> <p>Each bullet should look as described, and there should be no red present.</p> <ul class="one"> <li>disc</li> <li>disc</li> <li>disc</li> </ul> <ul class="two"> <li>circle</li> <li>circle</li> <li>circle</li> </ul> <ul class="three"> <li>square</li> <li>square</li> <li>square</li> </ul> <ul class="nine"> <li> </li> <li> </li> <li> </li> </ul> </body> </html>
/css/CSS2/css1/c563-list-type-000-ref.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Reftest Reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <style type="text/css"><![CDATA[ body {color: navy;} div { display: list-item; margin-left: 2.5em; } div.circ {list-style-type: circle;} div.squa {list-style-type: square;} div#first {margin-top: 1em;} ]]> </style> </head> <body> <p>Each bullet should look as described, and there should be no red present.</p> <ul> <li>disc</li> <li>disc</li> <li>disc</li> </ul> <div class="circ">circle</div> <div class="circ">circle</div> <div class="circ">circle</div> <div id="first" class="squa">square</div> <div class="squa">square</div> <div class="squa">square</div> </body> </html>