Closed
Bug 1796
Opened 26 years ago
Closed 26 years ago
This site's IFRAME is incorrect width
Categories
(Core :: Layout: Images, Video, and HTML Frames, defect, P2)
Tracking
()
VERIFIED
INVALID
M5
People
(Reporter: angus, Assigned: peterl-retired)
References
()
Details
External style sheet sets all IFRAMEs to 764px wide, but it's not appearing that
way in this sample page.
Reporter | ||
Comment 1•26 years ago
|
||
Submitted by webmaster@dpatraining.com
Updated•26 years ago
|
Status: NEW → ASSIGNED
Comment 3•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Updated•26 years ago
|
QA Contact: 4110 → 3849
Updated•26 years ago
|
Assignee: karnaze → peterl
Status: ASSIGNED → NEW
Target Milestone: M4 → M5
Comment 5•26 years ago
|
||
I think the external style sheet is the culprit because the following works when
the inline style is used instead of the external style sheet. Reassigning to
Peter and moving to M5.
<html>
<head>
<link rel="stylesheet" href="foo.css">
</head>
<body>
<IFRAME stylex="width:490px; height:764px;" src="test1.html"
frameborder="1"></IFRAME>
</body>
</html>
---foo.css----
IFRAME {height: 490 px; width: 764 px;}
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Assignee | ||
Comment 6•26 years ago
|
||
The linked style sheet is INVALID.
IFRAME {height: 490 px; width: 764 px;}
White space is not allowed between the length number and the unit specifier.
Therefore the height & width properties of the IFRAME rule are ignored per spec.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 7•26 years ago
|
||
marking as verified
Updated•6 years ago
|
Product: Core → Core Graveyard
Updated•6 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
•