Closed
Bug 253647
Opened 21 years ago
Closed 18 years ago
jpox.org - div positioned at top right of page prevents or block clicking on links at top left of page
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: drennalls, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.1) Gecko/20040707
Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.7.1) Gecko/20040707
www.jpox.org has a div that's positioned at the top right of the page. After a
specified time the div visibility is set to hidden. There are some links in an
image map at the top right of the page. Until the "popup" div is hidden you can
no click on the image map links.
Reproducible: Always
Steps to Reproduce:
1. Go to www.jpox.org and try and click on the top left links while the popup on
the top right is still visible
2. Once the popup is hidden try to click on the links again
The same can be tried with the html below, reproducible everytime. The links at
the top left cannot be clicked on until the top right div is hidden
<html><head><body>
<div id="links">
<b><a href="sdsd"> link1 </a> <a href="sdsd"> link2 </a> <a
href="sdsd"> link3 </a> <a href="sdsd"> link4 </a>
</div>
<!-- Popup -->
<script language="Javascript">
function hideDialog()
{
var obj;
obj = document.getElementById('dialog');
obj.style.visibility = 'hidden';
}
setInterval('hideDialog()',5000);
</script>
<div name="dialog" id="dialog" style="position: absolute; left: -100px; top:
0px; width: 100%; direction: rtl;">
<table border=1>
<tr><td>Table in</td></tr>
<tr><td>a</td></tr>
<tr><td>Popup</td></tr>
</table>
</div>
</body></html>
Actual Results:
The top left links cannot be clicked on until the top right div is hidden
Expected Results:
The user should be able to click on the links regardless of whether the top
right div is visible or not.
Updated•21 years ago
|
Whiteboard: DUPEME
Comment 1•21 years ago
|
||
> www.jpox.org has a div that's positioned at the top right of the page.
Actually, no. It's positioned across almost the entire top of the page (from
100px to the left of the left edge of the root element, to 100px to the left of
the right edge). So it in fact sits over the links in question. Try putting a
border on the <div> to see where it is.
Assignee: general → english-us
Component: Browser-General → English US
OS: Windows 98 → All
Product: Browser → Tech Evangelism
QA Contact: general → english-us
Hardware: PC → All
Version: Trunk → unspecified
Comment 2•21 years ago
|
||
Conforming summary to TFM item 10 at
http://www.mozilla.org/projects/tech-evangelism/site/procedures.html#file-new
Summary: div positioned at top right of page prevents or block clicking on links at top left of page → jpox.org - div positioned at top right of page prevents or block clicking on links at top left of page
Comment 3•18 years ago
|
||
I can't seem to reproduce this brokenness any more in Camino trunk or Firefox 2. FIXED.
Status: UNCONFIRMED → RESOLVED
Closed: 18 years ago
Resolution: --- → FIXED
Updated•11 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
•