Closed
Bug 186256
Opened 23 years ago
Closed 17 years ago
sueddeutsche.de - Some pages are way too long - excess blank space at bottom
Categories
(Tech Evangelism Graveyard :: German, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
Future
People
(Reporter: muellkontrolle, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2b) Gecko/20021016
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.2b) Gecko/20021016
http://www.sueddeutsche.de 's article pages (not the homepage itself) always
have several screens of blank space at the bottom
I'm not into the details of html - so maybe you can look into it and see if it's
a Mozilla-problem or some quirk of IE that does it right
Reproducible: Always
Steps to Reproduce:
1. go to www.sueddeutsche.de
2. click on any headline to go to an article page
3. there will be blank space below the article
Same behavior in Phoenix 0.5
Comment 1•23 years ago
|
||
Confirming on 2002121608 Win2k.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•23 years ago
|
||
Mozilla 1.3a
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3a) Gecko/20021212
Windows 2000 SP3
confirming.
The article pages do have 2 iframes with:
HEIGHT: 10000px;
Which I suppose is the problem...
Updated•23 years ago
|
Priority: -- → P3
Target Milestone: --- → Future
Comment 3•22 years ago
|
||
-> Tech Evangelism
the iframes are loaded w/ excessive height, which is correctly by the individual
frame page. The content frame ('if_content') has the correct js code:
function kuerzecontent()
{
var doc_height = document.body.offsetHeight
alert(doc_height);
if (top != self && document.all) {
var doc_height=document.body.scrollHeight
top.document.all.if_content.style.height = doc_height+10+"px";
}
if (top != self && document.getElementById && !document.all) {
var doc_height = document.body.offsetHeight
top.document.getElementById('if_content').style.height = doc_height+10+"px";
}
}
onload = kuerzecontent
the right frame (if_info), however, doesn't:
function kuerzerechts()
{
if (top != self && document.all)
{
var doc_height=document.body.scrollHeight
top.document.all.if_info.style.height = doc_height+10+"px";
}
}
other frames, which I did not check, may have incorrect code
Assignee: other → nitot
Component: Layout → Europe: West
Product: Browser → Tech Evangelism
QA Contact: ian → brantgurganus2001
Version: Trunk → unspecified
Updated•22 years ago
|
Summary: Some pages are way too long - excess blank space at bottom → sueddeutsche.de - Some pages are way too long - excess blank space at bottom
Comment 4•22 years ago
|
||
move...
Assignee: nitot → german
Component: Europe: West → German
QA Contact: brantgurganus2001 → german
Comment 5•20 years ago
|
||
I also see this occassionally, at http://www.globalissues.org -- you will have
to follow through to any article other than the home page. Sometimes you will
get a lot of blank space. Other times, you will get a little bit, and other
times you won't get any. If I resize the text (ctrl-+) then the blank space
vanishes. If I refresh, the blank space vanishes. The only new CSS added was as
follows in order to center the pages, and provide a border around everything:
html {
background:#e0d0c0; /* #eee; */
padding:0.2em 0;
}
body {
width:59em;
margin:0.2em auto!important;
border:1px solid #f09030; /* #ddd; */
}
#content-container:after {
content:"";
border:1px solid #f8f8f8;
display:block;
clear:both;
}
The two main content blocks float left and right.
HTML validates (though could of course be improved, especially the divs and the
CSS!). CSS validates other than box model hack and one or two other things that
have been there for months.
I cannot reproduce this on a local dev machine, perhaps because all the content
comes back very quickly...?
Comment 6•20 years ago
|
||
Just wanted to add, that disabling JavaScript does not alleviate the problem, so
am not sure this is related to JS.
Also, this looks similar to issue number 283369 and it happens in Mozilla and
Firefox
Depends on: 283369
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•