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

Side by Side Diff: LayoutTests/inspector-protocol/accessibility/accessibility-ignoredNodesModal-expected.txt

Issue 1076453004: Show reasons why nodes are ignored in accessibility sidebar (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add a catch-all return to ignoredReasonName Created 5 years, 7 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 Hidden by modal dialog
2 (Dialog itself is not hidden)
3 Non-hidden element inside dialog
4 #_1: {
5 "id": "<int>",
6 "result": {
7 "accessibilityNode": {
8 "nodeId": "<string>",
9 "ignored": true,
10 "role": {
11 "type": "internalRole",
12 "value": "Div"
13 },
14 "ignoredReasons": [
15 {
16 "name": "activeModalDialog",
17 "value": {
18 "type": "idref",
19 "relatedNodeValue": {
20 "backendNodeId": "<string>",
21 "idref": "_2"
22 }
23 }
24 }
25 ]
26 }
27 }
28 }
29 #_2: {
30 "id": "<int>",
31 "result": {
32 "accessibilityNode": {
33 "nodeId": "<string>",
34 "ignored": false,
35 "role": {
36 "type": "role",
37 "value": "dialog"
38 },
39 "properties": []
40 }
41 }
42 }
43 #_3: {
44 "id": "<int>",
45 "result": {
46 "accessibilityNode": {
47 "nodeId": "<string>",
48 "ignored": false,
49 "role": {
50 "type": "internalRole",
51 "value": "Div"
52 },
53 "properties": []
54 }
55 }
56 }
57
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698