()
| 8418 | }; |
| 8419 | |
| 8420 | function activeElt() { |
| 8421 | var activeElement = document.activeElement; |
| 8422 | while (activeElement && activeElement.root && activeElement.root.activeElement) |
| 8423 | activeElement = activeElement.root.activeElement; |
| 8424 | return activeElement; |
| 8425 | } |
| 8426 | // Older versions of IE throws unspecified error when touching |
| 8427 | // document.activeElement in some cases (during loading, in iframe) |
| 8428 | if (ie && ie_version < 11) activeElt = function() { |
no outgoing calls
no test coverage detected