blob: 34f8e4a3994b840a6d58d3979e2233d492bc95de (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
# fast/forms
This directory contains tests related to HTML forms. We prefer this directory
to fast/dom/HTML*Element/ for HTML forms.
## Sub-directories
* button/
`<button>` tests
* calendar-picker/
Calendar pickers for date, datetime-local, month, and week input types.
* checkbox/
`<input type=checkbox>`
* color/
`<input type=color>`
* datalist/
`<datalist>` except picker UI
* date/
`<input type=date>`
* date-multiple-fields/
Inline UI of `<input type=date>` on desktop platforms.
* datetimelocal/
`<input type=datetime-local>`
* datetimelocal-multiple-fields/
Inline UI of `<input type=datetime-local>` on desktop platforms.
* fieldset/
`<fieldset>` and `<legend>`
* file/
`<input type=file>`
* hidden/
`<input type=hidden>`
* image/
`<input type=image>`
* input-button/
`<input type=button>`
* label/
`<label>`
* mailto/
mailto: form submission
* month/
`<input type=month>`
* month-multiple-fields/
Inline UI of `<input type=month>` on desktop platforms.
* number/
`<input type=number>`
* page-popup/
Common behavior for PagePopup framework.
* radio/
`<input type=radio>`
* range/
`<input type=range>`
* search/
`<input type=search>`
* select/
`<select>`
* select-popup/
Popup menu for `<select>` on CrOS, Linux, and Windows.
* submit/
`<input type=submit>`
* suggestion-picker/
`<datalist>` picker UI
* text/
`<input type=text>` and common behavior of text-like input types.
* textarea/
`<textarea>`
* time/
`<input type=time>`
* time-multiple-fields/
Inline UI of `<input type=time>` on desktop platforms.
* url/
`<input type=url>`
* week/
`<input type=week>`
* week-multiple-fields/
Inline UI of `<input type=week>` on desktop platforms.
|