Closed
Bug 55075
Opened 25 years ago
Closed 25 years ago
Frame stays blank
Categories
(Core :: Layout: Images, Video, and HTML Frames, defect, P3)
Tracking
()
People
(Reporter: cgohier, Assigned: pollmann)
References
()
Details
Using build 2000100120, on winNT.
At http://www.princeton.edu/~jedwards/cif/intro.html
The right frame stays blank. It works well with IE5.
Comment 1•25 years ago
|
||
Yes, I see this same occuring with Oct 6 build.
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Comment 2•25 years ago
|
||
Page source shows a nested FRAMESET. The second frameset specifies a single ROW
at "100%" but actually contains two frames.
<HTML> <HEAD> <TITLE>Chess is Fun</TITLE>
<BASE HREF="http://www.princeton.edu/~jedwards/cif/">
</HEAD><FRAMESET COLS="50%,50%">
<FRAMESET ROWS="100%"><FRAME SRC="chess.html" name="window0_name">
<frame SRC="basics1.html" name="window1_name"></FRAMESET>
</FRAMESET>
</HTML>
| Assignee | ||
Comment 3•25 years ago
|
||
Yes, both Nav and IE will correct this invalid HTML. Here's how it should look:
<HTML>
<HEAD>
<TITLE>Chess is Fun</TITLE>
<BASE HREF="http://www.princeton.edu/~jedwards/cif/">
</HEAD>
<FRAMESET COLS="50%,50%">
<FRAME SRC="chess.html" name="window0_name">
<frame SRC="basics1.html" name="window1_name">
</FRAMESET>
</HTML>
(Got rid of the unnecessary single row frameset)
This is a dup of existing bug 43464
*** This bug has been marked as a duplicate of 43464 ***
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
Updated•7 years ago
|
Product: Core → Core Graveyard
Updated•7 years ago
|
Component: Layout: HTML Frames → Layout: Images
Product: Core Graveyard → Core
You need to log in
before you can comment on or make changes to this bug.
Description
•