File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,17 @@ var i,
163
163
{ dir : "parentNode" , next : "legend" }
164
164
) ;
165
165
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
+
166
177
// Optimize for push.apply( _, NodeList )
167
178
try {
168
179
push . apply (
@@ -1316,7 +1327,7 @@ Expr = jQuery.expr = {
1316
1327
} ,
1317
1328
1318
1329
focus : function ( elem ) {
1319
- return elem === document . activeElement &&
1330
+ return elem === safeActiveElement ( ) &&
1320
1331
document . hasFocus ( ) &&
1321
1332
! ! ( elem . type || elem . href || ~ elem . tabIndex ) ;
1322
1333
} ,
You can’t perform that action at this time.
0 commit comments