Closed
Bug 4435
Opened 26 years ago
Closed 25 years ago
DOM doesn't recognize the BLOCKQUOTE element.
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
VERIFIED
FIXED
M7
People
(Reporter: jcarpenter0524, Assigned: jcarpenter0524)
Details
Build 3/29/99
WinNT,MacPPC
- Use HTML below
- DOM reports that it sees [objectHTMLElement] instead of
[objectHTMLBlockquoteElement] as it seems it should.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD><TITLE>test</TITLE></HEAD>
<BODY>
<BLOCKQUOTE>
Any text here.
</BLOCKQUOTE>
<SCRIPT TYPE="text/javascript">
var oList=document.firstChild.childNodes.item(1).childNodes.item(1)
document.write(oList);
</SCRIPT>
</BODY>
</HTML>
Assignee | ||
Updated•26 years ago
|
QA Contact: 4015 → 3847
Assignee | ||
Updated•26 years ago
|
Priority: P3 → P2
Assignee | ||
Comment 1•26 years ago
|
||
Didn't intend to leave Priority at P3, moving to P1 as this is blocking testing.
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Comment 2•26 years ago
|
||
Actually it should return an element of type HTMLQuoteElement (according to the
DOM Level 1 Errata). Fixed with my checkin on 4/13.
Assignee | ||
Updated•25 years ago
|
Status: RESOLVED → REOPENED
Assignee | ||
Updated•25 years ago
|
Resolution: FIXED → ---
Assignee | ||
Comment 3•25 years ago
|
||
Afraid this is still not fixed.
Build 1999-06-16-M6
DOM still returns "[object HTMLElement]" instead of "[object HTMLQuoteElement]"
(also, please send me the link to the info where you are finding the reference
to HTMLQuoteElement. At this URL:
http://www.w3.org/TR/REC-DOM-Level-1/level-one-html.html
I am finding both "Interface HTMLBlockquoteElement" and "Interface
HTMLQuoteElement", but perhaps I am reading it wrong. Thanks.)
Updated•25 years ago
|
Status: REOPENED → RESOLVED
Closed: 26 years ago → 25 years ago
Resolution: --- → FIXED
Comment 4•25 years ago
|
||
Oops. Sorry, I missed one of the codepaths. Your test now works. Checkin on
5/12/1999.
Assignee | ||
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Assignee | ||
Comment 5•25 years ago
|
||
Verified Fixt.
Build 1999-05-17-09-M6
Assignee | ||
Updated•25 years ago
|
Status: VERIFIED → REOPENED
OS: All → Mac System 8.5
Hardware: All → Macintosh
Assignee | ||
Updated•25 years ago
|
Resolution: FIXED → ---
Assignee | ||
Comment 6•25 years ago
|
||
oops. Doesn't work on macppc, build 1999-05-17-09-M6. Reopening and changing
platform to Mac only.
Updated•25 years ago
|
Assignee: vidur → janc
Status: REOPENED → NEW
Comment 7•25 years ago
|
||
This is cross-platform code. I don't know how it could fail on a specific
platform unless there's something wrong with DLL/shared library management. My
guess is that you have an old build.
Updated•25 years ago
|
Status: NEW → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: --- → FIXED
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 9•25 years ago
|
||
verified that it returns HTMLQuoteElement on all 3 platforms, 6/8 builds.
Marking resolved and verified.
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
•