Closed
Bug 94182
Opened 23 years ago
Closed 23 years ago
CSS2-Display with marker does not work
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
People
(Reporter: teruko, Assigned: pierre)
Details
The following is HTML file.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD>
<TITLE>Content alignment in the marker box</TITLE>
<STYLE type="text/css">
LI:before {
display: marker;
content: "(" counter(counter) ")";
counter-increment: counter;
width: 6em;
text-align: center;
}
</STYLE>
</HEAD>
<BODY>
<OL>
<LI> This is the first item.
<LI> This is the second item.
<LI> This is the third item.
</OL>
</BODY>
</HTML>
Actual display as following.
1.This is the first item.
2.This is the second item.
3.This is the third item.
Expected display.
(1) This is the
first item.
(2) This is the
second item.
(3) This is the
third item.
Tested 7-27-0.9.2 build.
Reporter | ||
Updated•23 years ago
|
QA Contact: ian → teruko
Comment 1•23 years ago
|
||
actually, the problem is that we don't implement counter() yet...
Duplicate of bug 3247 (via bug 51393 or bug 70191)
*** This bug has been marked as a duplicate of 3247 ***
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Comment 4•17 years ago
|
||
Linking to the current active bugs on this subject: display: marker won't be implemented (https://bugzilla.mozilla.org/show_bug.cgi?id=14983) -- instead mozilla will eventually "Support CSS3's ::marker pseudo element" (https://bugzilla.mozilla.org/show_bug.cgi?id=205202).
You need to log in
before you can comment on or make changes to this bug.
Description
•