Closed Bug 292070 Opened 19 years ago Closed 19 years ago

this is wish for handing divs scrolling.

Categories

(Firefox :: General, defect)

x86
Windows XP
defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 97283

People

(Reporter: margus.sipria, Assigned: bugzilla)

Details

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; fi-FI; rv:1.7.6) Gecko/20050226 Firefox/1.0.1
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; fi-FI; rv:1.7.6) Gecko/20050226 Firefox/1.0.1

When i make layout with frames (header, menu and main) and main frame uses
scroll bar i can scroll that with my mouses wheel and using page down and
arrows, but when i do same with div (example code in the end).
It would be nice to scroll the content-div (that is acive at the current moment)
with the wheel of the mouse.

Our system:
Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; fi-FI; rv:1.7.7)
Gecko/20050414 Firefox/1.0.3
OS: Windows XP SP1

### example code starts ###
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
 <head>
  <style>
div#header {
	height: 71px;
	width: 100%;
	position: fixed;
	right: 0px;
	top: 0px;
	bottom: auto;
	left: 0px;
	color: #FFFFFF;
	background-color: gray;
}

div#menu {
	width: 150px;
	position: fixed;
	right: auto;
	top: 71px;
	bottom: 0px;
	left: 0px;

	overflow: hidden;
	color: #FFFFFF;
	background-color: silver;
}

div#main {
	position: fixed;
	right: 0px;
	top: 71px;
	bottom: 0px;
	left: 150px;
	overflow: auto;
	padding: 0px 0px 0px 10px;
	color: #000000;
	background: transparent none no-repeat;
}
  </style>
  <title>Test</title>
 </head>
 <body>
  <div id="header">
  </div>
  <div id="menu">
  </div>
   <div id="main">
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
lots of text to make scroll bar to apear.<br /><br /><br /><br /><br /><br />
  </div>
 </body>
</html>

Reproducible: Always

Steps to Reproduce:
try to scroll div
Actual Results:  
div does not respond

Expected Results:  
expected div to scroll down
This is already fixed, and will work in Firefox 1.1.

*** This bug has been marked as a duplicate of 97283 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
You need to log in before you can comment on or make changes to this bug.