Closed
Bug 4643
Opened 26 years ago
Closed 26 years ago
webpages don't get scrollbars
Categories
(Core :: XUL, defect, P2)
Tracking
()
VERIFIED
FIXED
M4
People
(Reporter: mikepinkerton, Assigned: karnaze)
References
Details
Open apprunner
Load a page (www.macintouch.com, for example, it's long)
Notice there is no scrollbar with which to scroll vertically.
This is mac and linux and happens with all pages. Probably happens on windows
too, but i can't verify. This is with the 4/7/99 build.
Re-assinged to trudelle@netscape.com and changed component to XP
Toolkit/Widgets.
Peter, who get this?
Updated•26 years ago
|
Assignee: trudelle → evaughan
Priority: P3 → P2
Target Milestone: M4
Comment 2•26 years ago
|
||
I'm guessing that evaughan is a good place to start. p2 for M4
Updated•26 years ago
|
Assignee: evaughan → troy
Comment 4•26 years ago
|
||
This is a gecko bug. If an iframe src points to a web page with frames and is
later changed to another page the second page will not have scrollbars. Here is
a simple html example that demonstrates the problem. Notice that after you hit
the change button the iframe has no scrollbars. Now to show you that the problem
is with frames. Now take the same example but make the staring src of the iframe
"http://www.netscape.com" and try it again. And you guessed it the scrollbars do
appear. This is why this is happending in apprunner.
<html>
<head>
<script>
function change()
{
window.frames[0].location.href = "http://www.yahoo.com";
alert("changed");
}
</script>
</head>
<body>
<button onclick="change()"> change </button>
<iframe name="frame1" src="http://warp.mcom.com">
</body>
</html>
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 7•26 years ago
|
||
Fixed with latest checkin.
You need to log in
before you can comment on or make changes to this bug.
Description
•