| Summary: | [test case] Scrolling is impossible on http://www.andymcm.com/csharpfaq.htm | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Ismail Donmez <ismail> |
| Component: | khtml renderer | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Test case | ||
|
Description
Ismail Donmez
2006-05-07 13:25:43 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. Re-titling. 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);"??
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.
|