Closed
Bug 10115
Opened 26 years ago
Closed 26 years ago
adjacent sibliling selector
Categories
(Core :: CSS Parsing and Computation, defect, P3)
Tracking
()
VERIFIED
INVALID
People
(Reporter: tapio.markula, Assigned: peterl-retired)
Details
I tested first-child + adjacent sibliling selectors
LI OL LI matches elements with class=a in the following
LI OL+UL matches elements with class=b in the following
LI OL>LI matches elements with class=c in the following
<ul>
<li>
<ol>
<li class="a c"> works only in Mozilla 5.0, not in IE 5.0
<ul>
<li class="a"></li>
</ul>
</li>
</ol>
<ul class="b"> I don't got working in Mozilla 5.0
<li></li>
</ul>
</li>
</ul>
Test-css:
ul li {list-style-type: disc;
list-style-image: url(../Seurakunta/uudet_logot/pallo.gif); /* pallo = an orange ball*/
list-style-position: outside;}
ul li ol li {list-style-type: lower-alpha;
list-style-image: url(../Seurakunta/uudet_logot/.gif);
list-style-position: outside;}
ul li ol>li {list-style-type: decimal;
list-style-image: url(../Seurakunta/uudet_logot/.gif);
list-style-position: outside;}
li ol+ul {list-style-type: disc;
list-style-image: url(../Seurakunta/uudet_logot/pallo-punainen.gif); /* punainen=red*/
list-style-position: outside;}
Test-body:
<UL>
<LI> UL LI: should be orange ball
<OL>
<LI>UL LI OL>LI: should be decimal - don't work in IE 5.0
<UL>
<LI>UL LI OL UL LI: should be lower-alpha
</UL>
</OL>
<UL>
<LI>UL LI OL+UL - should be red ball?
</UL>
</UL>
| Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
| Assignee | ||
Comment 1•26 years ago
|
||
Working per CSS spec. The rule "UL LI" is re-setting the list-style witin the
effects of the "li ol+ul". Try "li ol+ul li".
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•26 years ago
|
||
Marking as verified invalid.
You need to log in
before you can comment on or make changes to this bug.
Description
•