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

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2587343004: Finish implementation and tests of 5 ARIA 1.1 attributes. (Closed)
Patch Set: Rebase on previous change Created 3 years, 12 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
1 { 1 {
2 "version": { "major": "1", "minor": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 4263 matching lines...) Expand 10 before | Expand all | Expand 10 after
4274 }, 4274 },
4275 { 4275 {
4276 "id": "AXLiveRegionAttributes", 4276 "id": "AXLiveRegionAttributes",
4277 "type": "string", 4277 "type": "string",
4278 "enum": [ "live", "atomic", "relevant", "busy", "root" ], 4278 "enum": [ "live", "atomic", "relevant", "busy", "root" ],
4279 "description": "Attributes which apply to nodes in live regions. " 4279 "description": "Attributes which apply to nodes in live regions. "
4280 }, 4280 },
4281 { 4281 {
4282 "id": "AXWidgetAttributes", 4282 "id": "AXWidgetAttributes",
4283 "type": "string", 4283 "type": "string",
4284 "enum": [ "autocomplete", "haspopup", "level", "multiselectable" , "orientation", "multiline", "readonly", "required", "valuemin", "valuemax", "v aluetext" ], 4284 "enum": [ "autocomplete", "haspopup", "keyshortcuts", "level", " multiselectable", "orientation", "multiline", "readonly", "required", "roledescr iption", "valuemin", "valuemax", "valuetext" ],
4285 "description": "Attributes which apply to widgets." 4285 "description": "Attributes which apply to widgets."
4286 }, 4286 },
4287 { 4287 {
4288 "id": "AXWidgetStates", 4288 "id": "AXWidgetStates",
4289 "type": "string", 4289 "type": "string",
4290 "enum": [ "checked", "expanded", "pressed", "selected" ], 4290 "enum": [ "checked", "expanded", "modal", "pressed", "selected" ],
4291 "description": "States which apply to widgets." 4291 "description": "States which apply to widgets."
4292 }, 4292 },
4293 { 4293 {
4294 "id": "AXRelationshipAttributes", 4294 "id": "AXRelationshipAttributes",
4295 "type": "string", 4295 "type": "string",
4296 "enum": [ "activedescendant", "flowto", "controls", "describedby ", "labelledby", "owns" ], 4296 "enum": [ "activedescendant", "controls", "describedby", "detail s", "errormessage", "flowto", "labelledby", "owns" ],
4297 "description": "Relationships between elements other than parent /child/sibling." 4297 "description": "Relationships between elements other than parent /child/sibling."
4298 }, 4298 },
4299 { 4299 {
4300 "id": "AXNode", 4300 "id": "AXNode",
4301 "type": "object", 4301 "type": "object",
4302 "properties": [ 4302 "properties": [
4303 { "name": "nodeId", "$ref": "AXNodeId", "description": "Uniq ue identifier for this node." }, 4303 { "name": "nodeId", "$ref": "AXNodeId", "description": "Uniq ue identifier for this node." },
4304 { "name": "ignored", "type": "boolean", "description": "Whet her this node is ignored for accessibility" }, 4304 { "name": "ignored", "type": "boolean", "description": "Whet her this node is ignored for accessibility" },
4305 { "name": "ignoredReasons", "type": "array", "items": { "$re f": "AXProperty" }, "description": "Collection of reasons why this node is hidde n.", "optional": true }, 4305 { "name": "ignoredReasons", "type": "array", "items": { "$re f": "AXProperty" }, "description": "Collection of reasons why this node is hidde n.", "optional": true },
4306 { "name": "role", "$ref": "AXValue", "description": "This <c ode>Node</code>'s role, whether explicit or implicit.", "optional": true}, 4306 { "name": "role", "$ref": "AXValue", "description": "This <c ode>Node</code>'s role, whether explicit or implicit.", "optional": true},
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
4494 "name": "accepted", 4494 "name": "accepted",
4495 "description": "Informs that port was successfully bound and got a specified connection id.", 4495 "description": "Informs that port was successfully bound and got a specified connection id.",
4496 "parameters": [ 4496 "parameters": [
4497 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4497 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4498 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4498 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4499 ] 4499 ]
4500 } 4500 }
4501 ] 4501 ]
4502 }] 4502 }]
4503 } 4503 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698