Opened 14 years ago
Last modified 13 years ago
#6302 confirmed Bug
if both 'blur' and 'click' events handled - they fires infinitely in firefox
Reported by: | Scalar | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | Firefox | Cc: |
Description
If we bind handler functions for both 'blur' and 'click' events - they fires infinitely. Browser firefox 3.5.7 OS Windows XP SP3
Attachments (2)
Change History (6)
Changed 14 years ago by
Attachment: | test3.html added |
---|
comment:1 Changed 14 years ago by
Keywords: | Firefox added; click blur firefox removed |
---|---|
Status: | new → confirmed |
comment:2 Changed 14 years ago by
Owner: | set to Tobiasz Cudnik |
---|---|
Status: | confirmed → assigned |
Fixable by 6261.patch from #6261.
comment:3 Changed 13 years ago by
Owner: | Tobiasz Cudnik deleted |
---|---|
Status: | assigned → confirmed |
It seems that this issue still occurs in Firefox for focus event.
- Please download attached file and put it in your samples folder
- Edit it and try the following combinations :
e.document.on('focus',TestFocus); e.document.on('blur',TestBlur); OR e.document.on('focus',TestFocus); e.document.on('click',TestClick); OR e.document.on('focus',TestFocus);
Either blur (first case) or focus event will be fired constantly.
NOTE: the blur and click events seem to work fine.
Changed 13 years ago by
Attachment: | test_cke.html added |
---|
Test file, demonstrates the bug