Closed
Bug 201939
Opened 22 years ago
Closed 22 years ago
label-control binding handler implementation error
Categories
(Core :: XBL, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 128736
People
(Reporter: dfour, Assigned: hyatt)
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3) Gecko/20030312
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3) Gecko/20030312
In XBL binding for label-control last line of click handler implementation has
an error
Code is:
if(controlElement) controlElementID.focus();
Code should be:
if(controlElement) controlElement.focus();
Reproducible: Always
Steps to Reproduce:
1. Click on any label element containing a control attribute
2.
3.
Actual Results:
JavaScript error: controlElementID;focus is not a function
Expected Results:
Give focus to element associated with the label
Comment 1•22 years ago
|
||
*** This bug has been marked as a duplicate of 128736 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•