mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
453 B
HTML
27 lines
453 B
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title></title>
|
||
|
<style type="text/css">
|
||
|
|
||
|
.one, .two {
|
||
|
list-style-position: outside;
|
||
|
list-style-type: circle;
|
||
|
}
|
||
|
|
||
|
.two {
|
||
|
list-style-image: url(dummy.gif); /* nonexistent */
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<ul>
|
||
|
<li class="one">Should have a circle marker.</li>
|
||
|
<li class="two">Should have a circle marker.</li>
|
||
|
</ul>
|
||
|
|
||
|
</body>
|
||
|
</html>
|