Closed
Bug 7559
Opened 26 years ago
Closed 25 years ago
accesskey doesn't work
Categories
(Core :: Layout: Form Controls, defect, P3)
Tracking
()
VERIFIED
FIXED
M16
People
(Reporter: Brade, Assigned: dcone)
References
Details
(Whiteboard: [nsbeta2+][PDT-])
Attachments
(1 file)
556 bytes,
text/html
|
Details |
accesskey doesn't seem to work. It doesn't matter if the accesskey is uppercase
or lowercase.
Here is my html testcase:
<html>
<head>
<title> accesskey test </title>
</head>
<body>
<form>
<input type="radio" name="toggle" id="disabling.radio" accesskey="d"
value="1" onclick="disablingOfElements()" />
<label for="disabling.radio"> <u>D</u>isabled elements</label>
<br/>
<input type="radio" name="toggle" id="enabling.radio" accesskey="e"
onclick="enablingOfElements()" />
<label for="enabling.radio"> <u>E</u>nabled elements</label>
</form>
</body>
</html>
Updated•26 years ago
|
Assignee: karnaze → kmcclusk
Comment 1•26 years ago
|
||
Reassigning to Kevin.
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M10
Comment 2•26 years ago
|
||
Fails on WINNT using both native and gfx widgets.
We need to add support to the label for capturing the access key events and
processing them.
Moving all Widget Set bugs, past and present, to new HTML Form Controls
component per request from karnaze. Widget Set component will be retired
shortly.
Updated•26 years ago
|
Assignee: kmcclusk → rods
Status: ASSIGNED → NEW
Comment 4•26 years ago
|
||
Rod, re-assigning to you. This is similiar to using the space bar to select
radio buttons and checkboxes that have focus.
Updated•26 years ago
|
Target Milestone: M10 → M14
Comment 5•26 years ago
|
||
Changing to M14
Updated•26 years ago
|
Target Milestone: M14 → M15
Comment 6•26 years ago
|
||
moving to M15
Comment 7•26 years ago
|
||
Comment 10•26 years ago
|
||
PDT would like to know why this is critical/beta1.
Comment 12•26 years ago
|
||
The accesskey feature is available for users to quickly give focus to a field in
a form by typing the key associated with that field. The feature currently does
not work and affects the A, AREA, BUTTON, INPUT, LABEL, LEGEND, and TEXTAREA
tags. There is no precedent for this feature. New for HTML4.0.
Comment 14•26 years ago
|
||
This is a dup of 959 (or should it be the other way around?)
*** This bug has been marked as a duplicate of 959 ***
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Comment 15•26 years ago
|
||
Verified duplicate
Comment 16•26 years ago
|
||
Actually I am going to reopen this bug. There is really two parts to the bug.
This bug which is about having the form controls do the right thing and 959
which is about the event system doing the right thing. I need this bug (gosh I
can't believe I said that)
Status: VERIFIED → REOPENED
Resolution: DUPLICATE → ---
Comment 18•25 years ago
|
||
nominating for nsbeta2 based on:
- severity
- visibility
- feature (HTML 4.0 Standards Compliance) broken
Comment 19•25 years ago
|
||
Still happens in:
- MacOS9 2000-04-26-08-M16 Commercial Build
- Linux6 2000-04-26-08-M16 Commercial Build
- Win98 2000-26-11-M16 Mozilla Build
Comment 20•25 years ago
|
||
Putting on [nsbeta2+] radar for beta2 fix.
Comment 21•25 years ago
|
||
cool, it works now.
Status: REOPENED → RESOLVED
Closed: 26 years ago → 25 years ago
Resolution: --- → FIXED
Comment 22•25 years ago
|
||
Works on:
- Linux6 2000-05-23-10-M16 Commercial Build
- Win95 2000-05-23-10-M16 Commercial Build
Doesn't work on:
- MacOS9 2000-05-23-12-M16 Commercial Build
Reopening bug.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 23•25 years ago
|
||
The isControl on line #596 needs to be changed to isMeta per the HTML 4 spec.
Access keys work on the Mac with this final fix. reassigning to dcone because I
will be on vacation.
Assignee: rods → dcone
Status: REOPENED → NEW
Assignee | ||
Comment 24•25 years ago
|
||
Put in change.
Status: NEW → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: --- → FIXED
Comment 25•25 years ago
|
||
Verified Fixed on:
- MacOS9 2000-06-23-08-M17 Commercial
- Linux6 2000-06-23-11-M17 Commercial
- Win98 2000-06-23-09-M17 Commercial
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•