UNPKG

570 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.tabbables = void 0;
4/**
5 * list of the object to be considered as focusable
6 */
7exports.tabbables = [
8 'button:enabled',
9 'select:enabled',
10 'textarea:enabled',
11 'input:enabled',
12 // elements with explicit roles will also use explicit tabindex
13 // '[role="button"]',
14 'a[href]',
15 'area[href]',
16 'summary',
17 'iframe',
18 'object',
19 'embed',
20 'audio[controls]',
21 'video[controls]',
22 '[tabindex]',
23 '[contenteditable]',
24 '[autofocus]',
25];