Add hints to <summary> elements

This commit is contained in:
Olmo Kramer 2018-03-06 03:46:40 +01:00
parent 7a9f8fda72
commit 8a193e2dc5
No known key found for this signature in database
GPG Key ID: BE09591F4AB66337

View File

@ -41,8 +41,8 @@ Group = enum.Enum('Group', ['all', 'links', 'images', 'url', 'inputs'])
SELECTORS = { SELECTORS = {
Group.all: ('a, area, textarea, select, input:not([type=hidden]), button, ' Group.all: ('a, area, textarea, select, input:not([type=hidden]), button, '
'frame, iframe, link, [onclick], [onmousedown], [role=link], ' 'frame, iframe, link, summary, [onclick], [onmousedown], '
'[role=option], [role=button], img, ' '[role=link], [role=option], [role=button], img, '
# Angular 1 selectors # Angular 1 selectors
'[ng-click], [ngClick], [data-ng-click], [x-ng-click]'), '[ng-click], [ngClick], [data-ng-click], [x-ng-click]'),
Group.links: 'a[href], area[href], link[href], [role=link][href]', Group.links: 'a[href], area[href], link[href], [role=link][href]',