Closed
Bug 513062
Opened 16 years ago
Closed 16 years ago
When li overflow auto no bullet is rendered.
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: ryan, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/530.5 (KHTML, like Gecko) Chrome/2.0.172.39 Safari/530.5
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)
<html><body><ul><li style="overflow: auto;">hi</li></ul></body></html> Does not render with bullets.
Reproducible: Always
Steps to Reproduce:
1.Open a new tab in firefox
2. Run firebug
3. edit the html body element and add:
<ul><li style="overflow: auto;">hi</li></ul>
4. observe that the list item has no bullet point.
Actual Results:
There was not bullet point.
Expected Results:
There should be a bullet point.
Comment 1•16 years ago
|
||
That is the expected behaviour. The list marker is placed outside of the principal box where as the overflow property applies to the principal box, see
http://www.w3.org/TR/CSS21/generate.html#propdef-list-style-position
WebKit (Safari, Chrome), Opera, IE 8 all have the same rendering.
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•