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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getPartialAXTree-expected.txt

Issue 2390783006: [DevTools] Accessibility: Show siblings and children of selected node (Closed)
Patch Set: Handle indirect children better 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getPartialAXTree-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getAXNodeWithAncestors-expected.txt b/third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getPartialAXTree-expected.txt
similarity index 68%
rename from third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getAXNodeWithAncestors-expected.txt
rename to third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getPartialAXTree-expected.txt
index 8d4ea10afa48db4dfd254ebd5f493fdffd337a59..ad9e04007a2063d933b4cce90222a43f9a34872f 100644
--- a/third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getAXNodeWithAncestors-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/accessibility/accessibility-getPartialAXTree-expected.txt
@@ -1,8 +1,8 @@
-
+
result: {
"nodes": [
{
- "nodeId": "<id>",
+ "nodeId": "<int>",
"ignored": false,
"role": {
"type": "role",
@@ -63,10 +63,58 @@ result: {
"value": false
}
}
- ]
+ ],
+ "parentId": "<int>",
+ "childIds": [],
+ "backendDomNodeId": "<int>"
+ },
+ {
+ "nodeId": "<int>",
+ "ignored": false,
+ "role": {
+ "type": "role",
+ "value": "button"
+ },
+ "name": {
+ "type": "computedString",
+ "value": "",
+ "sources": [
+ {
+ "type": "relatedElement",
+ "attribute": "aria-labelledby"
+ },
+ {
+ "type": "attribute",
+ "attribute": "aria-label"
+ },
+ {
+ "type": "relatedElement",
+ "nativeSource": "label"
+ },
+ {
+ "type": "contents"
+ },
+ {
+ "type": "attribute",
+ "attribute": "title"
+ }
+ ]
+ },
+ "properties": [
+ {
+ "name": "invalid",
+ "value": {
+ "type": "token",
+ "value": "false"
+ }
+ }
+ ],
+ "parentId": "<int>",
+ "childIds": [],
+ "backendDomNodeId": "<int>"
},
{
- "nodeId": "<id>",
+ "nodeId": "<int>",
"ignored": false,
"role": {
"type": "role",
@@ -99,10 +147,16 @@ result: {
}
]
},
- "properties": []
+ "properties": [],
+ "parentId": "<int>",
+ "childIds": [
+ "<int>",
+ "<int>"
+ ],
+ "backendDomNodeId": "<int>"
},
{
- "nodeId": "<id>",
+ "nodeId": "<int>",
"ignored": false,
"role": {
"type": "role",
@@ -126,10 +180,15 @@ result: {
}
]
},
- "properties": []
+ "properties": [],
+ "parentId": "<int>",
+ "childIds": [
+ "<int>"
+ ],
+ "backendDomNodeId": "<int>"
},
{
- "nodeId": "<id>",
+ "nodeId": "<int>",
"ignored": false,
"role": {
"type": "internalRole",
@@ -162,7 +221,11 @@ result: {
}
]
},
- "properties": []
+ "properties": [],
+ "childIds": [
+ "<int>"
+ ],
+ "backendDomNodeId": "<int>"
}
]
}

Powered by Google App Engine
This is Rietveld 408576698