Updates: Status: WontFix Cc: anan...@chromium.org Labels: -NeedsReduction Has-reduction Evangelism
Comment #3 on issue 14465 by m...@chromium.org: [www.gamesurge.net]: Pop-up menus do not display on gamesurge.net http://code.google.com/p/chromium/issues/detail?id=14465 Pop-up menu are implemented by jasvascript popup.js, in that js file, there is code like: var iex=(document.all); var nav=(document.layers); var old=(navigator.appName=="Netscape" && !document.layers && !document.getElementById); var n_6=(window.sidebar); ...... // capture pointer if(nav)document.captureEvents(Event.MOUSEMOVE); if(n_6) document.addEventListener("mousemove",get_mouse,true); if(nav||iex)document.onmousemove=get_mouse; In Chrome, nav, n_6 and iex have a value of undefined. This code does a browser check and then register the pop-up menu to mouseover hander, unfortunately all of the three variables (nav,n_6,iex) fail in the if sentence, so in Chrome, the pop-up menu is not registered at all. This is the cause of the issue. The code doesn't consider about Chrome, webmaster should fix it in their side. Reduction below: http://go/reductions/14465/test-standard.html Attachments: test-standard.html 437 bytes -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---