Closed
Bug 482668
Opened 16 years ago
Closed 16 years ago
Container div with overflow:scroll/auto will not show part of its content
Categories
(Firefox :: General, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 215055
People
(Reporter: amer_aidi, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7
I have a container div with overflow equals to auto. This Div contains a long content.
When scrolling down, the inner content will disappear after ~33000px of scrolling
I have simplified the code to be:
----------------------------------------------------
<html>
<head>
<style>
.ScrollArea{
overflow: auto;
height:40000px;
}
</style>
</head>
<body>
<div class="ScrollArea">
<div style="height:100%; background:red"> </div>
<div>
</body>
</html>
----------------------------------------------------
Reproducible: Always
Steps to Reproduce:
1.Copy the code on the problem details and put it in .html file, save it and open it on Firefox
2.Scroll down and notice the red content
Actual Results:
The red content will disappear after ~33000px of scrolling
Expected Results:
The red content should be visible
Updated•16 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•