Closed
Bug 3430
Opened 26 years ago
Closed 26 years ago
type-o on the Paragraph attribute for center alignment in DOM
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
VERIFIED
INVALID
People
(Reporter: jcarpenter0524, Assigned: vidur)
Details
3/4/99 build
View the code below in 5.0 browser and see that the center align attribute is
spelled "cdnter" in DOM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>test</TITLE>
</HEAD>
<BODY>
<P align=cdnter>This is a paragraph.</P>
<SCRIPT TYPE="text/javascript">
var oLink=document.firstChild.childNodes.item(1).childNodes.item(1);
document.writeln(oLink.align);
</SCRIPT>
</BODY>
</HTML>
Reporter | ||
Updated•26 years ago
|
QA Contact: 4015 → 3847
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Assignee | ||
Comment 1•26 years ago
|
||
That's what you set it to in the HTML:
<P align=cdnter>This is a paragraph.</P>
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Reporter | ||
Comment 2•26 years ago
|
||
Doh!!!
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
•