Closed
Bug 113047
Opened 23 years ago
Closed 21 years ago
best-western.de - nn4 dom detection cause unnecessary reloads in moz
Categories
(Tech Evangelism Graveyard :: German, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Mailslists, Unassigned)
References
()
Details
(Whiteboard: [TOOL][DREAMWEAVER][havefix][havecontact])
Attachments
(1 file)
(deleted),
application/x-javascript
|
Details |
when opening this URL the browser never completes the download of this page but it
permanent reloads an redisplays parts of the page contents.
Comment 1•23 years ago
|
||
WORKSFORME under linux build 2001113021. Reopen if can reproduce on latest
nightly build.
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → WORKSFORME
seeing it in build 2001113003 win32
caused by:
<quote>
function init()
{
browserName = navigator.appName;
if((browserName=="Netscape") && (!dl)) document.location.reload();
go = true;
}
</quote>
and this was found somewhere else...
<quote>
var dl = document.layers;
</quote>
this needs fixing too.
<quote>
function _onresize()
{
if (navigator.appName == "Netscape")
{
if (window.innerHeight != h || window.innerWidth != w)
{
w = window.innerWidth;
h = window.innerHeight;
if (top.bw_stage.bw_main.bw_content)
top.bw_stage.bw_main.bw_content.location.reload();
}
}
}
</quote>
Status: RESOLVED → UNCONFIRMED
Component: Browser-General → Europe: West
Product: Browser → Tech Evangelism
Resolution: WORKSFORME → ---
Version: other → unspecified
oops forgot to reassign
Assignee: asa → nitot
Status: UNCONFIRMED → NEW
Ever confirmed: true
QA Contact: doronr → caillon
Summary: permanent page dowload → best-western.de nn4 dom detection cause unnecessary reloads in moz
Comment 4•23 years ago
|
||
This site is using Apple's WebObjects software: http://www.apple.com/webobjects/
They are also using DW 3.0 MM_findObj.
If we run into more WebObjects, we may want to set up a tracking bug for them.
Blocks: 51020
Whiteboard: {TOOL][DREAMWEAVER]
Comment 6•22 years ago
|
||
is the resize the only issue ? cause it is quite easy to fix,
just replace if((browserName=="Netscape") with if (document.layers) ...
Updated•22 years ago
|
Whiteboard: {TOOL][DREAMWEAVER] → [TOOL][DREAMWEAVER]
Comment 7•22 years ago
|
||
they need to fix their sniffing and also their scripts :
http://www.best-western.de/scripts.js . working on it.
Updated•22 years ago
|
Whiteboard: [TOOL][DREAMWEAVER] → [TOOL][DREAMWEAVER][havefix]
Comment 8•22 years ago
|
||
linking to this new version fixes some problems with the site.
Updated•22 years ago
|
Whiteboard: [TOOL][DREAMWEAVER][havefix] → [TOOL][DREAMWEAVER][havefix][havecontact]
Updated•22 years ago
|
Summary: best-western.de nn4 dom detection cause unnecessary reloads in moz → best-western.de - nn4 dom detection cause unnecessary reloads in moz
Comment 9•21 years ago
|
||
move...
Assignee: nitot → german
Component: Europe: West → German
QA Contact: z-caillon-obsolete2 → german
Comment 10•21 years ago
|
||
now we only need somebody to tell them ;)
Comment 11•21 years ago
|
||
WFM I couldn't find any problem. Redesigned?
->marking FIXED
Status: NEW → RESOLVED
Closed: 23 years ago → 21 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
•