Closed
Bug 322302
Opened 19 years ago
Closed 19 years ago
When tabbing through forms, drop down boxes and check boxes are skipped over
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: xero9, Unassigned)
Details
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/416.12 (KHTML, like Gecko) Safari/416.13
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8) Gecko/20051111 Firefox/1.5
When filled out forms, either signing into online banking, or ordering something new online and I use tab to jump to the next text box or drop down box, I can only tab between text boxes. It skips right over drop downs and check boxes
Reproducible: Always
Steps to Reproduce:
1. Go to http://www.rbcroyalbank.com/cards/inquiry/index.html for example, and click 'sign in'
2.Try to fill in birthdate using only the keyboard. Type in day of birth, press tab to jump to month
3. Skips right over month, goes right to the year
Actual Results:
It skips over the 'month' drop box and goes straight to the year
Expected Results:
Should be able to change the month using the keyboard only, instead you have to use the mouse
n/a
Comment 1•19 years ago
|
||
They could be using tabindex on the form elements. Select the stuff that's doing this, right click and choose "View Selection Source", then paste that here.
Severity: major → normal
Version: unspecified → 1.5 Branch
Here is the html for the affected part:
<form method="post" action="/cgi-bin/rbaccess/rbcgi3m01">
<input name="REQUEST" value="GetVisaInquiryDetails" type="hidden">
<input name="F6" value="1" type="hidden">
<input name="F7" value="IB" type="hidden">
<input name="F21" value="IB" type="hidden">
<input name="F22" value="HT" type="hidden">
<input name="LANGUAGE" value="ENGLISH" type="hidden">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr>
<td valign="top"><span class="fieldLabel">VISA Card Number : </span></td>
<td class="bodyText" valign="top">
<input name="WHOLEVISA" value="" size="16" maxlength="16" type="password">
</td>
</tr>
<tr><td colspan="2" height="10"></td></tr>
<tr>
<td valign="top"><span class="fieldLabel">Birthdate : </span><span class="note"><br>(Primary cardholder; dd/mmm/yyyy)</span></td>
<td valign="top"><input name="BIRTHDAY" value="" size="2" maxlength="2" type="text">/
<select name="BIRTHMONTH" size="1">
<option value="01" selected="selected">Jan
</option><option value="02">Feb
</option><option value="03">Mar
</option><option value="04">Apr
</option><option value="05">May
</option><option value="06">Jun
</option><option value="07">Jul
</option><option value="08">Aug
</option><option value="09">Sep
</option><option value="10">Oct
</option><option value="11">Nov
</option><option value="12">Dec
</option></select>/
<input name="BIRTHYEAR" value="" size="4" maxlength="4" type="text">
</td>
</tr>
<tr><td colspan="2" height="10"></td></tr>
<tr>
<td valign="top"><span class="fieldLabel">Identification Word : </span></td>
<td valign="top"><input name="PASSWORD" value="" size="20" maxlength="15" type="password"></td>
</tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr><td colspan="2" height="10"></td></tr>
<tr><td colspan="2" height="10"><h3>Do you wish to continue?</h3></td></tr>
<tr><td colspan="2" height="10"></td></tr>
<tr>
<td align="left">
<input alt="Yes" name="Yes" src="/common/images/english/btn_yes.gif" type="image" border="0">
</td>
<td align="right">
<a href="http://www.royalbank.com/cards"><img alt="No" src="/common/images/english/btn_no.gif" border="0"></a>
</td>
</tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr><td class="bodyText"> </td></tr>
<tr>
<td class="bodyText" align="left">
First time user? <a href="http://www.royalbank.com/cards/inquiry/verification.html">Select your Identification word.</a>
</td>
</tr>
<tr><td height="5"></td></tr>
<tr>
<td class="bodyText" align="left">
For customer service please call <b>1 800 769-2512</b>
</td>
</tr>
<tr><td height="5"></td></tr>
<tr>
<td class="bodyText" align="left">
TTY - <b>1 800 769-2518</b><br>
Outside North America please call collect 24 hours a day, 7 days a week <b>(416) 974-7780</b>
</td>
</tr>
<tr><td height="10"></td></tr>
</tbody></table>
</form>
Would just like to note that this wasn't the only page that was affected. All forms seemed to be, and this was specific to the OS X. I've been using Windows my entire life and only started experiencing this on my new Mac with Firefox. Also, as of today, this problem seems to have disapeared
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•19 years ago
|
Status: RESOLVED → UNCONFIRMED
Resolution: FIXED → ---
Updated•19 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago → 19 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•