Closed
Bug 73266
Opened 24 years ago
Closed 23 years ago
webshots.com : Mozilla not recognised as a new generation browser
Categories
(Tech Evangelism Graveyard :: English US, defect, P4)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: bugzilla3, Assigned: doronr)
References
()
Details
On that url, images are shifted to the right extreme. As Fabian noted, there is
a photoTableWidth = window.innerWidth-180;
Another possibility it could be an evangelism bug.
![]() |
||
Comment 1•24 years ago
|
||
Evangelism. The full code:
if (versionFour())
{
if (navigator.appName.indexOf("Netscape") != -1)
photoTableWidth = window.innerWidth-180;
else if(navigator.appName.indexOf("Internet Explorer") != -1)
photoTableWidth = document.body.clientWidth-180;
}
and
function versionFour()
{
// the following line will allow 4.<anything>
return (navigator.userAgent.indexOf("Mozilla/4.") != -1)
}
So versionFour() returns false (correct; we are not a version 4 browser). Then
photoTableWidth is not set at all (window.innerWidth() is never even called), so
the table has it's natural width (as narrow as it can get without smushing the
images). And it's in a <div align="right"> so see the rendering we see.
Assignee: karnaze → evangelism
Status: UNCONFIRMED → NEW
Component: Layout → Evangelism
Ever confirmed: true
QA Contact: petersen → zach
Summary: innerWidth problem → community.webshots.com : Mozilla not recognised as a new generation browser
Comment 3•24 years ago
|
||
Reassigning evangelism bugs to bclary@netscape.com.
Assignee: evangelism → bclary
Updated•24 years ago
|
Priority: -- → P4
Comment 4•24 years ago
|
||
All Evangelism Bugs are now in the Product Tech Evangelism. See bug 86997 for
details.
Component: Evangelism → US English
Product: Browser → Tech Evangelism
Version: other → unspecified
Assignee | ||
Updated•24 years ago
|
Whiteboard: [aok]
Comment 5•23 years ago
|
||
Mass reassign of all tech-evangelism us general bugs assigned to bc to
doron except bc's P1 bugs. You may search for this mass reassign (it is
305 bugs) by searching for the keyword 'greeneggsandham'
Assignee: bclary → doronr
Updated•23 years ago
|
Keywords: evang500
Summary: community.webshots.com : Mozilla not recognised as a new generation browser → webshots.com : Mozilla not recognised as a new generation browser
Whiteboard: [aok]
Comment 6•23 years ago
|
||
they removed the if(versionFour())
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
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
•