Closed
Bug 471127
Opened 16 years ago
Closed 16 years ago
tabindex can't be dynamically changed for file input field
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: mxr.asm, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5
tabindex can't be dynamically changed for file input field
Reproducible: Always
Steps to Reproduce:
<input type="radio" name="rb" value="file" id="rb1"
onFocus="document.getElementById('fileField').tabIndex='';"
onBlur="document.getElementById('fileField').tabIndex='-1';"/>
<input name="fileField" id="fileField" type="file" tabindex="-1">
<input type="radio" name="rb" value="text" id="rb2" checked
onFocus="document.getElementById('textField').tabIndex='';"
onBlur="document.getElementById('textField').tabIndex='-1';"/>
<textarea name="textField" id="textField" tabindex="-1"></textarea>
Actual Results:
select first radio button and tab = file input field isn't in focus
select second radio button and tab = text input field is in focus
Expected Results:
select first radio button and tab = file input field is in focus
select second radio button and tab = text input field is in focus
Comment 1•16 years ago
|
||
Can you retest with the latest test nightly build for your issue seems to be fixed: http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-mozilla-central/
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 3•16 years ago
|
||
Great! Resolving WFM for now, because the bug that fixed this issue is (still) unknown.
Resolution: FIXED → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•