Closed
Bug 478337
Opened 16 years ago
Closed 16 years ago
Test in IE / Win
Categories
(Skywriter Graveyard :: General, defect, P2)
Tracking
(Not tracked)
RESOLVED
FIXED
0.2.x
People
(Reporter: dion, Assigned: jwalker)
Details
The front page doesn't render well (the center area is on the left) and we get a JavaScript error.
All we want here, is for it to render OK and do the browser compat popup.
![]() |
Reporter | |
Updated•16 years ago
|
Assignee: nobody → jwalker
Priority: -- → P2
Assignee | ||
Comment 1•16 years ago
|
||
comments before the doctype force quirks mode, getDimensions is borked in IE.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
![]() |
||
Comment 2•16 years ago
|
||
Quirks and Standard mode in IE 8 have two different calls to get the browser dimensions.
This is a quick hack I used to get it to display in IE 8/7
if(Prototype.Browser.IE) {
if(document.documentElement.clientWidth==0) {
//IE8 Quirks
alert('In Quirks Mode!');
var y=(document.body.clientHeight - elDims.height) / 2;
var x=(document.body.clientWidth - elDims.width) / 2;
}
else {
var y=(document.documentElement.clientHeight - elDims.height) / 2;
var x=(document.documentElement.clientWidth - elDims.width) / 2;
}
}
Comment 3•16 years ago
|
||
This is a mass migration from Mozilla Labs :: Bespin to Bespin :: General.
This bug likely still needs to be triaged and categorized.
Component: Bespin → General
Product: Mozilla Labs → Bespin
QA Contact: bespin → general
Target Milestone: 0.2 → 0.2.x
You need to log in
before you can comment on or make changes to this bug.
Description
•