Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-aria-1.1-expected.txt

Issue 2653063002: Add 4 ARIA 1.1 attributes using new sparse attribute interface. (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1
2 This text field has an error!
3
4
5 Details 1
6 Details 2
7 Select All
8 {
9 "nodeId": "<string>",
10 "ignored": false,
11 "role": {
12 "type": "role",
13 "value": "textbox"
14 },
15 "name": {
16 "type": "computedString",
17 "value": "",
18 "sources": [
19 {
20 "type": "relatedElement",
21 "attribute": "aria-labelledby"
22 },
23 {
24 "type": "attribute",
25 "attribute": "aria-label"
26 },
27 {
28 "type": "relatedElement",
29 "nativeSource": "label"
30 },
31 {
32 "type": "placeholder",
33 "attribute": "placeholder"
34 },
35 {
36 "type": "placeholder",
37 "attribute": "aria-placeholder"
38 },
39 {
40 "type": "attribute",
41 "attribute": "title"
42 }
43 ]
44 },
45 "properties": [
46 {
47 "name": "invalid",
48 "value": {
49 "type": "token",
50 "value": "false"
51 }
52 },
53 {
54 "name": "multiline",
55 "value": {
56 "type": "boolean",
57 "value": false
58 }
59 },
60 {
61 "name": "readonly",
62 "value": {
63 "type": "boolean",
64 "value": false
65 }
66 },
67 {
68 "name": "required",
69 "value": {
70 "type": "boolean",
71 "value": false
72 }
73 },
74 {
75 "name": "errormessage",
76 "value": {
77 "type": "idref",
78 "relatedNodes": [
79 {
80 "idref": "err",
81 "nodeResult": "h3#err"
82 }
83 ]
84 }
85 }
86 ],
87 "domNode": "input"
88 }
89 {
90 "nodeId": "<string>",
91 "ignored": false,
92 "role": {
93 "type": "role",
94 "value": "img"
95 },
96 "name": {
97 "type": "computedString",
98 "value": "Label",
99 "sources": [
100 {
101 "type": "relatedElement",
102 "attribute": "aria-labelledby"
103 },
104 {
105 "type": "attribute",
106 "value": {
107 "type": "computedString",
108 "value": "Label"
109 },
110 "attribute": "aria-label",
111 "attributeValue": {
112 "type": "string",
113 "value": "Label"
114 }
115 },
116 {
117 "type": "attribute",
118 "attribute": "alt",
119 "superseded": true
120 },
121 {
122 "type": "attribute",
123 "attribute": "title",
124 "superseded": true
125 }
126 ]
127 },
128 "properties": [
129 {
130 "name": "details",
131 "value": {
132 "type": "idrefList",
133 "value": "",
134 "relatedNodes": [
135 {
136 "idref": "d1",
137 "nodeResult": "div#d1"
138 },
139 {
140 "idref": "d2",
141 "nodeResult": "div#d2"
142 }
143 ]
144 }
145 }
146 ],
147 "domNode": "img"
148 }
149 {
150 "nodeId": "<string>",
151 "ignored": false,
152 "role": {
153 "type": "role",
154 "value": "button"
155 },
156 "name": {
157 "type": "computedString",
158 "value": "Select All",
159 "sources": [
160 {
161 "type": "relatedElement",
162 "attribute": "aria-labelledby"
163 },
164 {
165 "type": "attribute",
166 "attribute": "aria-label"
167 },
168 {
169 "type": "relatedElement",
170 "nativeSource": "label"
171 },
172 {
173 "type": "contents",
174 "value": {
175 "type": "computedString",
176 "value": "Select All"
177 }
178 },
179 {
180 "type": "attribute",
181 "attribute": "title",
182 "superseded": true
183 }
184 ]
185 },
186 "properties": [
187 {
188 "name": "invalid",
189 "value": {
190 "type": "token",
191 "value": "false"
192 }
193 },
194 {
195 "name": "keyshortcuts",
196 "value": {
197 "type": "string",
198 "value": "Ctrl+A"
199 }
200 }
201 ],
202 "domNode": "button"
203 }
204 {
205 "nodeId": "<string>",
206 "ignored": false,
207 "role": {
208 "type": "role",
209 "value": "checkbox"
210 },
211 "name": {
212 "type": "computedString",
213 "value": "",
214 "sources": [
215 {
216 "type": "relatedElement",
217 "attribute": "aria-labelledby"
218 },
219 {
220 "type": "attribute",
221 "attribute": "aria-label"
222 },
223 {
224 "type": "relatedElement",
225 "nativeSource": "label"
226 },
227 {
228 "type": "contents"
229 },
230 {
231 "type": "attribute",
232 "attribute": "title"
233 }
234 ]
235 },
236 "properties": [
237 {
238 "name": "invalid",
239 "value": {
240 "type": "token",
241 "value": "false"
242 }
243 },
244 {
245 "name": "checked",
246 "value": {
247 "type": "tristate",
248 "value": "true"
249 }
250 },
251 {
252 "name": "roledescription",
253 "value": {
254 "type": "string",
255 "value": "Lightswitch"
256 }
257 }
258 ],
259 "domNode": "input"
260 }
261
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698