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

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

Issue 2479593007: Expose images to accessibility (Closed)
Patch Set: A few more tests rebaselined. Created 4 years, 1 month 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
1 Non-hidden div for comparison 1 Non-hidden div for comparison
2 non-hidden treeitem 2 non-hidden treeitem
3 hidden non-treeitem 3 hidden non-treeitem
4 Buttons are leaf nodes 4 Buttons are leaf nodes
5 Descendant of aria-hidden node 5 Descendant of aria-hidden node
6 6
7 List item also presentational 7 List item also presentational
8 Div in list isn't presentational 8 Div in list isn't presentational
9 Content within label refers to label container 9 Content within label refers to label container
10 { 10 {
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 } 240 }
241 ] 241 ]
242 } 242 }
243 } 243 }
244 { 244 {
245 "id": "<int>", 245 "id": "<int>",
246 "result": { 246 "result": {
247 "nodes": [ 247 "nodes": [
248 { 248 {
249 "nodeId": "<string>", 249 "nodeId": "<string>",
250 "ignored": true, 250 "ignored": false,
251 "ignoredReasons": [
252 {
253 "name": "emptyAlt",
254 "value": {
255 "type": "boolean",
256 "value": true
257 }
258 }
259 ],
260 "role": { 251 "role": {
261 "type": "role", 252 "type": "role",
262 "value": "img" 253 "value": "img"
263 } 254 },
255 "name": {
256 "type": "computedString",
257 "value": "",
258 "sources": [
259 {
260 "type": "relatedElement",
261 "attribute": "aria-labelledby"
262 },
263 {
264 "type": "attribute",
265 "attribute": "aria-label"
266 },
267 {
268 "type": "attribute",
269 "value": {
270 "type": "computedString",
271 "value": ""
272 },
273 "attribute": "alt",
274 "attributeValue": {
275 "type": "string",
276 "value": ""
277 }
278 },
279 {
280 "type": "attribute",
281 "attribute": "title",
282 "superseded": true
283 }
284 ]
285 },
286 "properties": []
264 } 287 }
265 ] 288 ]
266 } 289 }
267 } 290 }
268 { 291 {
269 "id": "<int>", 292 "id": "<int>",
270 "result": { 293 "result": {
271 "nodes": [ 294 "nodes": [
272 { 295 {
273 "nodeId": "<string>", 296 "nodeId": "<string>",
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 ], 485 ],
463 "role": { 486 "role": {
464 "type": "internalRole", 487 "type": "internalRole",
465 "value": "Canvas" 488 "value": "Canvas"
466 } 489 }
467 } 490 }
468 ] 491 ]
469 } 492 }
470 } 493 }
471 494
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698