Closed
Bug 279453
Opened 20 years ago
Closed 17 years ago
proboards19.com - text box cannot be filled in; after a click, cursor does not go there
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: muriatic_acid, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 normally, i would be able to click and fillin the password and username to log in, but when i click the text box, the cursor just doesn't go there; however, when firefox saved my password from when i logged in in the http://revolutionaries.proboards19.com/index.cgi?action=login, it fills in both boxes for me Reproducible: Always Steps to Reproduce: 1. go to the site 2. click on the text box for username 3. Actual Results: cursor isn't there, so i can't type in a username Expected Results: get the cursor there
Comment 1•20 years ago
|
||
Also seing this with latest trunk. The only possibility to focus the field is to tab to it.
Version: unspecified → Trunk
Comment 2•20 years ago
|
||
Reason that this happends is the following:
<script>
function disableselect(e)
{
return false
}
function reEnable()
{
return true
}
//if NS6
if (window.sidebar)
{
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
onclick triggers before onmousedown, so the onmousedown will return false and
not make it possible to focus the text field.Assignee: firefox → english-us
Component: General → English US
OS: Windows XP → All
Product: Firefox → Tech Evangelism
QA Contact: general → english-us
Hardware: PC → All
Summary: text box cannot be filled in; after a click, cursor does not go there → proboards19.com - text box cannot be filled in; after a click, cursor does not go there
Version: Trunk → unspecified
Comment 3•17 years ago
|
||
No more onmousedown or onclick handlers in the page http://revolutionaries.proboards19.com/index.cgi?action=login so FIXED as far as I'm concerned.
Status: UNCONFIRMED → RESOLVED
Closed: 17 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
•