ICT30016-Assignment-3/node_modules/@testing-library/user-event/dist/utils/focus/selector.js
dlawler489 a79a6afd34 intial
intial
2025-09-16 12:09:52 +10:00

8 lines
No EOL
422 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FOCUSABLE_SELECTOR = void 0;
const FOCUSABLE_SELECTOR = ['input:not([type=hidden]):not([disabled])', 'button:not([disabled])', 'select:not([disabled])', 'textarea:not([disabled])', '[contenteditable=""]', '[contenteditable="true"]', 'a[href]', '[tabindex]:not([disabled])'].join(', ');
exports.FOCUSABLE_SELECTOR = FOCUSABLE_SELECTOR;