(window, element, value)
| 27 | } |
| 28 | |
| 29 | function input(window, element, value) { |
| 30 | element.value = value; |
| 31 | element.dispatchEvent(new window.Event('input', { bubbles: true })); |
| 32 | } |
| 33 | |
| 34 | function rowLabels(document) { |
| 35 | return Array.from(document.querySelectorAll('tbody tr:not([data-table-empty])')) |