Bug 126897 - [test case] Scrolling is impossible on http://www.andymcm.com/csharpfaq.htm
Summary: [test case] Scrolling is impossible on http://www.andymcm.com/csharpfaq.htm
Status: RESOLVED DUPLICATE of bug 121065
Alias: None
Product: konqueror
Classification: Applications
Component: khtml renderer (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-05-07 13:25 UTC by Ismail Donmez
Modified: 2006-05-19 16:03 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
Test case (7.40 KB, text/html)
2006-05-07 14:56 UTC, Allan Sandfeld
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ismail Donmez 2006-05-07 13:25:43 UTC
Version:            (using KDE Devel)
Installed from:    Compiled sources
OS:                Linux

Go to http://www.andymcm.com/csharpfaq.htm , click on "1.1  What is C#?" and nothing happens, correct behaviour would be to scroll down to the correct location.
Comment 1 Ismail Donmez 2006-05-07 13:27:14 UTC
Problem seems to be worse, I can't scroll on that page with up/down/PgUp/PgDown keys. Though I can scroll using the scrollbar.
Comment 2 Ismail Donmez 2006-05-07 13:28:36 UTC
Re-titling.
Comment 3 Allan Sandfeld 2006-05-07 14:15:09 UTC
Wicked...

I think it has be some CSS causing it. The CSS for the content is:
#content
{
	position:absolute;
	overflow:auto;
	top:40px;
	_top: 50px;
	left:160px;
	right:0px;
	bottom:10px;
	padding-right: 10px;
	_height:expression(offsetParent.offsetHeight-60);
	_width:expression(offsetParent.offsetWidth-162)
}

Maybe overflow:auto on position: absolute fails... 

Ofcourse much more curious what the hell is "_height:expression(offsetParent.offsetHeight-60);"??
Comment 4 Allan Sandfeld 2006-05-07 14:56:37 UTC
Created attachment 15962 [details]
Test case

A test case. 

This is actually a MSIE hack to fake position: fixed. The body has scroll=no,
but a div has overflow: auto and can scroll. 

I think a fix would need to test for scrollable children when a element has
scroll=no.
Comment 5 Allan Sandfeld 2006-05-19 16:03:32 UTC

*** This bug has been marked as a duplicate of 121065 ***