Closed
Bug 3415
Opened 26 years ago
Closed 26 years ago
<P> tag ruins layout
Categories
(Core :: Layout, defect, P2)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: morse, Assigned: pollmann)
References
()
Details
Following context is supposed to display "hello" and "goodby". Only the "hello"
is getting displayed.
Not a blocking problem because if I remove the <P> it works fine
<HTML>
<HEAD>
<SCRIPT>
function loadFrames() {
top.frames[0].document.open();
top.frames[0].document.write(
"Hello" +
"<P>" +
"Goodby"
);
top.frames[0].document.close();
}
</SCRIPT>
</HEAD>
<FRAMESET ROWS=*,1 onLoad=loadFrames()>
<FRAME SRC=about:blank>
<FRAME SRC=about:blank>
</FRAMESET>
<NOFRAMES>
<BODY> <P> </BODY>
</NOFRAMES>
</HTML>
Reporter | ||
Updated•26 years ago
|
Summary: <P> tag runs layout → <P> tag ruins layout
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Assignee | ||
Comment 1•26 years ago
|
||
I can't claim to have fixed this, but it works for me now.
My guess is it was fixed in the M3-a-thon. :)
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•26 years ago
|
||
Fixed in March 25th Build.
You need to log in
before you can comment on or make changes to this bug.
Description
•