Closed
Bug 4323
Opened 26 years ago
Closed 26 years ago
DOM can't read type of LI when set to "disc" as in <LI type=disc>
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jcarpenter0524, Assigned: vidur)
References
()
Details
Build: 3/25/99
- Go to URL: http://marvin/NGDriver/suites/domhtml/hli_014.html
(or use HTML code below which is modified to fit this text area)
- When <LI type=disc> is used, DOM doesn't "see" the type
- Note that if the same test is used and the type is set to either circle or
square, the test works fine.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD><TITLE>test</TITLE>
<SCRIPT TYPE="text/javascript" SRC="../testlib.js"></SCRIPT>
</HEAD>
<BODY>
<UL>
<LI type=disc>first list item
</UL>
<SCRIPT TYPE="text/javascript">
var oList=document.firstChild.childNodes.item(1);
var oList1=oList.childNodes.item(1).childNodes.item(1);
document.writeln(oList1.type);
</SCRIPT>
</BODY>
</HTML>
Reporter | ||
Updated•26 years ago
|
QA Contact: 4616 → 3847
Reporter | ||
Updated•26 years ago
|
Component: DOM Level 0 → DOM Level 1
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
Fixed a while ago - I forgot to close the bug. The "disc" type wasn't in the
type table in nsHTMLLIElement. The test provided now works.
Reporter | ||
Comment 2•26 years ago
|
||
4-20 build
Fixed
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Reporter | ||
Comment 3•26 years ago
|
||
that build should have been: 1999-04-20-10
Comment 4•8 years ago
|
||
square doesn't work either in 53.0
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•