Closed
Bug 5409
Opened 25 years ago
Closed 25 years ago
Message appears twice
Categories
(Core :: Layout, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: morse, Assigned: harishd)
Details
When content shown below is displayed, the message appears in both frames. It
should only appear in one of them. However, when the window is resized, the
message appears in only one frame as it should.
<HTML>
<HEAD>
<SCRIPT>
index_frame = 0;
function firstMessage(){
top.frames[index_frame].document.open();
top.frames[index_frame].document.write(
"<BODY>" +
"<A HREF=javascript:top.secondMessage();>" +
"Click to get second message" +
"</A>" +
"</BODY>"
);
top.frames[index_frame].document.close();
}
function secondMessage(){
top.frames[index_frame].document.open();
top.frames[index_frame].document.write(
"<BODY>" +
"<A HREF=javascript:top.firstMessage();>" +
"Click to get first message" +
"</A>" +
"</BODY>"
);
top.frames[index_frame].document.close();
}
</SCRIPT>
</HEAD>
<FRAMESET ROWS = 25,25 onLoad=firstMessage()>
<FRAME SRC=about:blank>
<FRAME SRC=about:blank>
</FRAMESET>
<NOFRAMES>
<BODY> <P> </BODY>
</NOFRAMES>
</HTML>
Reporter | ||
Comment 1•25 years ago
|
||
See also bug reports 5410 and 5411
Eric could you please take a look at this. I don't think this is anything to do
with the parser.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•25 years ago
|
||
Fixed in June 2 Build.
You need to log in
before you can comment on or make changes to this bug.
Description
•