Skip to content

Commit 3936cf3

Browse files
authored
Selector: Wrap activeElement access in try-catch
In IE 9 accessing `document.activeElement` may throw; see https://bugs.jquery.com/ticket/13393. We've already guarded against this in event code but not in selector. Closes gh-5229
1 parent 754108f commit 3936cf3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/selector.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,17 @@ var i,
163163
{ dir: "parentNode", next: "legend" }
164164
);
165165

166+
// Support: IE <=9 only
167+
// Accessing document.activeElement can throw unexpectedly
168+
// https://bugs.jquery.com/ticket/13393
169+
// An identical function exists in `src/event.js` but they use different
170+
// `documents` so it cannot be easily extracted.
171+
function safeActiveElement() {
172+
try {
173+
return document.activeElement;
174+
} catch ( err ) { }
175+
}
176+
166177
// Optimize for push.apply( _, NodeList )
167178
try {
168179
push.apply(
@@ -1316,7 +1327,7 @@ Expr = jQuery.expr = {
13161327
},
13171328

13181329
focus: function( elem ) {
1319-
return elem === document.activeElement &&
1330+
return elem === safeActiveElement() &&
13201331
document.hasFocus() &&
13211332
!!( elem.type || elem.href || ~elem.tabIndex );
13221333
},

0 commit comments

Comments
 (0)