Closed Bug 250801 Opened 20 years ago Closed 13 years ago

iplan.com.ar - DHTML menus can't be clicked on with Mozilla

Categories

(Tech Evangelism Graveyard :: Spanish, defect)

defect
Not set
normal

Tracking

(Not tracked)

RESOLVED INCOMPLETE

People

(Reporter: fcassia, Unassigned)

References

()

Details

(Keywords: testcase, Whiteboard: [HAVEFIX] [bug248549notfixed])

Attachments

(2 files)

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040625 Netscape/7.2 (ax)
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040625 

Visit http://www.iplan.com.ar, then try to select items from the left-side DHTML
menu. Once a DHTML menu branch opens, you move to a sub-option, and when you try
to reach a sub-option (which shows displaced vertically, compared with the same
page loaded in IE) the parent disappears.



Reproducible: Always
Steps to Reproduce:
1.Visit www.iplan.com.ar
2.Position the mouse over "About iPlan"
3.Try to reach "english version" from the pop-up menu(which shows abnormally
displaced about 50 pixels up). The parent disappears. (DHTML menus on IE 6.0
show slightly overlapping).

Actual Results:  
Sub-menus appear abnormally displaced about 50 pixels up. Once you move the
mouse cursor up to reach the sub-option, the parent disappears.

Expected Results:  
Look at the site with IE 6. The DHTML menu sub-options should appear slightly
overlapping.
Attached file Standalone testcase
Depending on your browser, http://www.iplan.com.ar/menu/HM_Loader.js is loading

1 of 3 different versions of the script.  Mozilla get:
http://www.iplan.com.ar/menu/HM_ScriptDOM.js which is broken.

This is a standalone testcase of the Mozilla version of the menu.
Assignee: nobody → spanish
Status: UNCONFIRMED → NEW
Component: Layout → Spanish
Ever confirmed: true
Keywords: testcase
OS: Windows XP → All
Product: Browser → Tech Evangelism
QA Contact: core.layout → spanish
Hardware: PC → All
Summary: DHTML menus can't be clicked on with Mozilla → iplan.com.ar - DHTML menus can't be clicked on with Mozilla
Version: Trunk → unspecified
The problem is that the parent offset is not added in correctly.
I fixed it by changing:

this.oL = (HM_IE) ? parseInt(this.menu.style.left) : -HM_BorderWidth;
this.oL += this.offsetLeft;
this.oT = (HM_IE) ? parseInt(this.menu.style.top) : -HM_BorderWidth;
this.oT += this.offsetTop;

to:

this.oL = (HM_IE||HM_NS6) ? parseInt(this.menu.style.left) : -HM_BorderWidth;
this.oL += this.offsetLeft;
this.oT = (HM_IE||HM_NS6) ? parseInt(this.menu.style.top) : -HM_BorderWidth;
this.oT += this.offsetTop;

in function HM_f_ItemOver.
Whiteboard: HAVEFIX
Whiteboard: HAVEFIX → [HAVEFIX] [bug248549notfixed]
INCOMPLETE due to lack of activity since the end of 2009.

If someone is willing to investigate the issues raised in this bug to determine whether they still exist, *and* work with the site in question to fix any existing issues, please feel free to re-open and assign to yourself.

Sorry for the bugspam; filter on "NO MORE PRE-2010 TE BUGS" to remove.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → INCOMPLETE
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: