UNPKG

ember-native-dom-helpers

Version:

Test helpers for your integration tests that fire native events

12 lines (8 loc) 283 B
import isFormControl from './is-form-control'; export default function isFocusable(el) { let focusableTags = ['LINK', 'A']; if (isFormControl(el) || el.isContentEditable || focusableTags.indexOf(el.tagName) > -1) { return true; } return el.hasAttribute('tabindex'); }