()
| 8450 | }; |
| 8451 | |
| 8452 | function activeElt() { |
| 8453 | var activeElement = document.activeElement; |
| 8454 | while (activeElement && activeElement.root && activeElement.root.activeElement) |
| 8455 | activeElement = activeElement.root.activeElement; |
| 8456 | return activeElement; |
| 8457 | } |
| 8458 | // Older versions of IE throws unspecified error when touching |
| 8459 | // document.activeElement in some cases (during loading, in iframe) |
| 8460 | if (ie && ie_version < 11) activeElt = function() { |
no outgoing calls
no test coverage detected