#8732 closed bug (fixed)
Incorrect feature detect for IE9 focusin/focusout
Reported by: | dmethvin | Owned by: | dmethvin |
---|---|---|---|
Priority: | blocker | Milestone: | 1.6 |
Component: | event | Version: | 1.5.2rc1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The indirect feature test in event.js for whether to simulate focusin/focusout is to look for document.addEventListener, but IE9 supports that and still has bubbling focusin/out so we are adding simulated event support when we shouldn't.
via danheberden: http://jsfiddle.net/cKRWE/5/
Change History (5)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Component: | unfiled → event |
---|---|
Milestone: | 1.next → 1.6 |
Priority: | undecided → blocker |
Version: | 1.5.1 → 1.5.2rc1 |
comment:3 Changed 12 years ago by
Status: | new → open |
---|
comment:4 Changed 12 years ago by
Owner: | set to dmethvin |
---|---|
Status: | open → assigned |
comment:5 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Fix #8732. Change feature detect for focusin event support, so IE9 won't have duplicate events.
Changeset: bbd9c776ea22296a6807d5b760bd4e82ee5f4414
Note: See
TracTickets for help on using
tickets.
Update: http://jsfiddle.net/dmethvin/cKRWE/6/
The addEventListener needed a third arg.