summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webdriver/tests/support/dom.py
blob: f77fb4938729a44b75fec2ed3f8697b2f68de1ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
BUTTON_TYPES = [
    "button",
    "reset",
    "submit",
]

INPUT_TYPES = [
    "button",
    "checkbox",
    "color",
    "date",
    "datetime-local",
    "email",
    "file",
    "image",
    "month",
    "number",
    "password",
    "radio",
    "range",
    "reset",
    "search",
    "submit",
    "tel",
    "text",
    "time",
    "url",
    "week",
];