chrome-devtools-frontend 1.0.1531367 → 1.0.1532884
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTHORS +3 -0
- package/front_end/core/platform/ArrayUtilities.ts +1 -1
- package/front_end/core/protocol_client/ConnectionTransport.ts +26 -0
- package/front_end/core/protocol_client/InspectorBackend.ts +24 -42
- package/front_end/core/protocol_client/protocol_client.ts +2 -10
- package/front_end/core/root/Runtime.ts +0 -2
- package/front_end/core/sdk/ChildTargetManager.ts +3 -3
- package/front_end/core/sdk/Connections.ts +8 -8
- package/front_end/core/sdk/NetworkManager.ts +20 -0
- package/front_end/core/sdk/RehydratingConnection.ts +6 -4
- package/front_end/core/sdk/Target.ts +2 -1
- package/front_end/core/sdk/TargetManager.ts +2 -1
- package/front_end/entrypoints/node_app/NodeMain.ts +1 -1
- package/front_end/generated/ARIAProperties.js +1301 -174
- package/front_end/generated/Deprecation.ts +7 -0
- package/front_end/generated/InspectorBackendCommands.js +1 -0
- package/front_end/generated/protocol-mapping.d.ts +4 -0
- package/front_end/generated/protocol-proxy-api.d.ts +5 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +1 -1
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +1 -1
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +4 -3
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +4 -3
- package/front_end/models/issues_manager/ClientHintIssue.ts +4 -3
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +4 -3
- package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +5 -3
- package/front_end/models/issues_manager/CookieIssue.ts +4 -4
- package/front_end/models/issues_manager/CorsIssue.ts +3 -3
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +4 -3
- package/front_end/models/issues_manager/ElementAccessibilityIssue.ts +4 -3
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +4 -3
- package/front_end/models/issues_manager/GenericIssue.ts +3 -3
- package/front_end/models/issues_manager/HeavyAdIssue.ts +3 -3
- package/front_end/models/issues_manager/IssuesManager.ts +3 -3
- package/front_end/models/issues_manager/LowTextContrastIssue.ts +5 -3
- package/front_end/models/issues_manager/MixedContentIssue.ts +4 -3
- package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +5 -3
- package/front_end/models/issues_manager/PropertyRuleIssue.ts +4 -3
- package/front_end/models/issues_manager/QuirksModeIssue.ts +4 -3
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +5 -3
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +5 -3
- package/front_end/models/issues_manager/SharedDictionaryIssue.ts +5 -3
- package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +5 -3
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +5 -3
- package/front_end/models/issues_manager/UserReidentificationIssue.ts +4 -3
- package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
- package/front_end/models/trace/extras/TraceTree.ts +13 -3
- package/front_end/models/trace/insights/ForcedReflow.ts +1 -1
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +16 -3
- package/front_end/panels/console/ConsoleInsightTeaser.ts +40 -48
- package/front_end/panels/console/consoleInsightTeaser.css +13 -0
- package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
- package/front_end/panels/network/{BlockedURLsPane.ts → RequestConditionsDrawer.ts} +78 -28
- package/front_end/panels/network/network-meta.ts +33 -9
- package/front_end/panels/network/network.ts +3 -3
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +18 -6
- package/front_end/panels/recorder/components/stepView.css +2 -2
- package/front_end/panels/sources/SourcesPanel.ts +10 -9
- package/front_end/panels/sources/SourcesSearchScope.ts +5 -0
- package/front_end/panels/timeline/TimelinePanel.ts +1 -2
- package/front_end/panels/timeline/TimingsTrackAppender.ts +10 -8
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +2 -8
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +2 -2
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +20 -14
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js +16 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js +2 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.js +30 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +18 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +22 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +20 -14
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js +16 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js +2 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.js +31 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +18 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/utils.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/utils.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/package.json +5 -4
- package/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +24 -14
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +16 -0
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +2 -4
- package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +35 -5
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +20 -0
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +6 -2
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +2 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/JSHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/utils.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/util/version.ts +1 -1
- package/front_end/ui/components/tooltips/Tooltip.ts +5 -0
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +31 -5
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +3 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +2 -0
- package/package.json +1 -1
- /package/front_end/panels/network/{blockedURLsPane.css → requestConditionsDrawer.css} +0 -0
|
@@ -5,15 +5,37 @@
|
|
|
5
5
|
export const config = {
|
|
6
6
|
"attributes": [
|
|
7
7
|
{
|
|
8
|
+
"isGlobal": true,
|
|
8
9
|
"name": "aria-actions",
|
|
9
10
|
"type": "IDREF_list"
|
|
10
11
|
},
|
|
11
12
|
{
|
|
12
13
|
"name": "aria-activedescendant",
|
|
14
|
+
"supportedOnRoles": [
|
|
15
|
+
"application",
|
|
16
|
+
"combobox",
|
|
17
|
+
"composite",
|
|
18
|
+
"grid",
|
|
19
|
+
"group",
|
|
20
|
+
"listbox",
|
|
21
|
+
"menu",
|
|
22
|
+
"menubar",
|
|
23
|
+
"radiogroup",
|
|
24
|
+
"row",
|
|
25
|
+
"searchbox",
|
|
26
|
+
"select",
|
|
27
|
+
"spinbutton",
|
|
28
|
+
"tablist",
|
|
29
|
+
"textbox",
|
|
30
|
+
"toolbar",
|
|
31
|
+
"tree",
|
|
32
|
+
"treegrid"
|
|
33
|
+
],
|
|
13
34
|
"type": "IDREF"
|
|
14
35
|
},
|
|
15
36
|
{
|
|
16
37
|
"default": "false",
|
|
38
|
+
"isGlobal": true,
|
|
17
39
|
"name": "aria-atomic",
|
|
18
40
|
"type": "boolean"
|
|
19
41
|
},
|
|
@@ -26,18 +48,47 @@ export const config = {
|
|
|
26
48
|
"none"
|
|
27
49
|
],
|
|
28
50
|
"name": "aria-autocomplete",
|
|
51
|
+
"supportedOnRoles": [
|
|
52
|
+
"combobox",
|
|
53
|
+
"searchbox",
|
|
54
|
+
"textbox"
|
|
55
|
+
],
|
|
29
56
|
"type": "token"
|
|
30
57
|
},
|
|
31
58
|
{
|
|
59
|
+
"isGlobal": true,
|
|
32
60
|
"name": "aria-braillelabel",
|
|
61
|
+
"preventedOnRoles": [
|
|
62
|
+
"caption",
|
|
63
|
+
"code",
|
|
64
|
+
"definition",
|
|
65
|
+
"deletion",
|
|
66
|
+
"emphasis",
|
|
67
|
+
"generic",
|
|
68
|
+
"insertion",
|
|
69
|
+
"mark",
|
|
70
|
+
"none",
|
|
71
|
+
"paragraph",
|
|
72
|
+
"strong",
|
|
73
|
+
"subscript",
|
|
74
|
+
"suggestion",
|
|
75
|
+
"superscript",
|
|
76
|
+
"term",
|
|
77
|
+
"time"
|
|
78
|
+
],
|
|
33
79
|
"type": "string"
|
|
34
80
|
},
|
|
35
81
|
{
|
|
82
|
+
"isGlobal": true,
|
|
36
83
|
"name": "aria-brailleroledescription",
|
|
84
|
+
"preventedOnRoles": [
|
|
85
|
+
"generic"
|
|
86
|
+
],
|
|
37
87
|
"type": "string"
|
|
38
88
|
},
|
|
39
89
|
{
|
|
40
90
|
"default": "false",
|
|
91
|
+
"isGlobal": true,
|
|
41
92
|
"name": "aria-busy",
|
|
42
93
|
"type": "boolean"
|
|
43
94
|
},
|
|
@@ -50,25 +101,58 @@ export const config = {
|
|
|
50
101
|
"undefined"
|
|
51
102
|
],
|
|
52
103
|
"name": "aria-checked",
|
|
104
|
+
"supportedOnRoles": [
|
|
105
|
+
"checkbox",
|
|
106
|
+
"menuitemcheckbox",
|
|
107
|
+
"menuitemradio",
|
|
108
|
+
"option",
|
|
109
|
+
"radio",
|
|
110
|
+
"switch",
|
|
111
|
+
"treeitem"
|
|
112
|
+
],
|
|
53
113
|
"type": "token"
|
|
54
114
|
},
|
|
55
115
|
{
|
|
56
116
|
"name": "aria-colcount",
|
|
117
|
+
"supportedOnRoles": [
|
|
118
|
+
"grid",
|
|
119
|
+
"table",
|
|
120
|
+
"treegrid"
|
|
121
|
+
],
|
|
57
122
|
"type": "integer"
|
|
58
123
|
},
|
|
59
124
|
{
|
|
60
125
|
"name": "aria-colindex",
|
|
126
|
+
"supportedOnRoles": [
|
|
127
|
+
"cell",
|
|
128
|
+
"columnheader",
|
|
129
|
+
"gridcell",
|
|
130
|
+
"row",
|
|
131
|
+
"rowheader"
|
|
132
|
+
],
|
|
61
133
|
"type": "integer"
|
|
62
134
|
},
|
|
63
135
|
{
|
|
64
136
|
"name": "aria-colindextext",
|
|
137
|
+
"supportedOnRoles": [
|
|
138
|
+
"cell",
|
|
139
|
+
"columnheader",
|
|
140
|
+
"gridcell",
|
|
141
|
+
"rowheader"
|
|
142
|
+
],
|
|
65
143
|
"type": "string"
|
|
66
144
|
},
|
|
67
145
|
{
|
|
68
146
|
"name": "aria-colspan",
|
|
147
|
+
"supportedOnRoles": [
|
|
148
|
+
"cell",
|
|
149
|
+
"columnheader",
|
|
150
|
+
"rowheader"
|
|
151
|
+
],
|
|
69
152
|
"type": "integer"
|
|
70
153
|
},
|
|
71
154
|
{
|
|
155
|
+
"isGlobal": true,
|
|
72
156
|
"name": "aria-controls",
|
|
73
157
|
"type": "IDREF_list"
|
|
74
158
|
},
|
|
@@ -83,28 +167,87 @@ export const config = {
|
|
|
83
167
|
"true",
|
|
84
168
|
"false"
|
|
85
169
|
],
|
|
170
|
+
"isGlobal": true,
|
|
86
171
|
"name": "aria-current",
|
|
87
172
|
"type": "token"
|
|
88
173
|
},
|
|
89
174
|
{
|
|
175
|
+
"isGlobal": true,
|
|
90
176
|
"name": "aria-describedby",
|
|
91
177
|
"type": "IDREF_list"
|
|
92
178
|
},
|
|
93
179
|
{
|
|
180
|
+
"isGlobal": true,
|
|
94
181
|
"name": "aria-description",
|
|
95
182
|
"type": "string"
|
|
96
183
|
},
|
|
97
184
|
{
|
|
185
|
+
"isGlobal": true,
|
|
98
186
|
"name": "aria-details",
|
|
99
187
|
"type": "IDREF"
|
|
100
188
|
},
|
|
101
189
|
{
|
|
102
190
|
"default": "false",
|
|
103
191
|
"name": "aria-disabled",
|
|
192
|
+
"supportedOnRoles": [
|
|
193
|
+
"application",
|
|
194
|
+
"button",
|
|
195
|
+
"checkbox",
|
|
196
|
+
"columnheader",
|
|
197
|
+
"combobox",
|
|
198
|
+
"composite",
|
|
199
|
+
"grid",
|
|
200
|
+
"gridcell",
|
|
201
|
+
"group",
|
|
202
|
+
"input",
|
|
203
|
+
"link",
|
|
204
|
+
"listbox",
|
|
205
|
+
"menu",
|
|
206
|
+
"menubar",
|
|
207
|
+
"menuitem",
|
|
208
|
+
"menuitemcheckbox",
|
|
209
|
+
"menuitemradio",
|
|
210
|
+
"option",
|
|
211
|
+
"radio",
|
|
212
|
+
"radiogroup",
|
|
213
|
+
"row",
|
|
214
|
+
"rowheader",
|
|
215
|
+
"scrollbar",
|
|
216
|
+
"searchbox",
|
|
217
|
+
"select",
|
|
218
|
+
"separator",
|
|
219
|
+
"slider",
|
|
220
|
+
"spinbutton",
|
|
221
|
+
"switch",
|
|
222
|
+
"tab",
|
|
223
|
+
"tablist",
|
|
224
|
+
"textbox",
|
|
225
|
+
"toolbar",
|
|
226
|
+
"tree",
|
|
227
|
+
"treegrid",
|
|
228
|
+
"treeitem"
|
|
229
|
+
],
|
|
104
230
|
"type": "boolean"
|
|
105
231
|
},
|
|
106
232
|
{
|
|
107
233
|
"name": "aria-errormessage",
|
|
234
|
+
"supportedOnRoles": [
|
|
235
|
+
"application",
|
|
236
|
+
"checkbox",
|
|
237
|
+
"columnheader",
|
|
238
|
+
"combobox",
|
|
239
|
+
"gridcell",
|
|
240
|
+
"listbox",
|
|
241
|
+
"radiogroup",
|
|
242
|
+
"rowheader",
|
|
243
|
+
"searchbox",
|
|
244
|
+
"slider",
|
|
245
|
+
"spinbutton",
|
|
246
|
+
"switch",
|
|
247
|
+
"textbox",
|
|
248
|
+
"tree",
|
|
249
|
+
"treegrid"
|
|
250
|
+
],
|
|
108
251
|
"type": "IDREF"
|
|
109
252
|
},
|
|
110
253
|
{
|
|
@@ -115,9 +258,27 @@ export const config = {
|
|
|
115
258
|
"undefined"
|
|
116
259
|
],
|
|
117
260
|
"name": "aria-expanded",
|
|
261
|
+
"supportedOnRoles": [
|
|
262
|
+
"application",
|
|
263
|
+
"button",
|
|
264
|
+
"checkbox",
|
|
265
|
+
"columnheader",
|
|
266
|
+
"combobox",
|
|
267
|
+
"gridcell",
|
|
268
|
+
"link",
|
|
269
|
+
"menuitem",
|
|
270
|
+
"menuitemcheckbox",
|
|
271
|
+
"menuitemradio",
|
|
272
|
+
"row",
|
|
273
|
+
"rowheader",
|
|
274
|
+
"switch",
|
|
275
|
+
"tab",
|
|
276
|
+
"treeitem"
|
|
277
|
+
],
|
|
118
278
|
"type": "token"
|
|
119
279
|
},
|
|
120
280
|
{
|
|
281
|
+
"isGlobal": true,
|
|
121
282
|
"name": "aria-flowto",
|
|
122
283
|
"type": "IDREF_list"
|
|
123
284
|
},
|
|
@@ -133,6 +294,23 @@ export const config = {
|
|
|
133
294
|
"dialog"
|
|
134
295
|
],
|
|
135
296
|
"name": "aria-haspopup",
|
|
297
|
+
"supportedOnRoles": [
|
|
298
|
+
"application",
|
|
299
|
+
"button",
|
|
300
|
+
"columnheader",
|
|
301
|
+
"combobox",
|
|
302
|
+
"gridcell",
|
|
303
|
+
"link",
|
|
304
|
+
"menuitem",
|
|
305
|
+
"menuitemcheckbox",
|
|
306
|
+
"menuitemradio",
|
|
307
|
+
"rowheader",
|
|
308
|
+
"searchbox",
|
|
309
|
+
"slider",
|
|
310
|
+
"tab",
|
|
311
|
+
"textbox",
|
|
312
|
+
"treeitem"
|
|
313
|
+
],
|
|
136
314
|
"type": "token"
|
|
137
315
|
},
|
|
138
316
|
{
|
|
@@ -142,6 +320,7 @@ export const config = {
|
|
|
142
320
|
"false",
|
|
143
321
|
"undefined"
|
|
144
322
|
],
|
|
323
|
+
"isGlobal": true,
|
|
145
324
|
"name": "aria-hidden",
|
|
146
325
|
"type": "token"
|
|
147
326
|
},
|
|
@@ -154,51 +333,149 @@ export const config = {
|
|
|
154
333
|
"true"
|
|
155
334
|
],
|
|
156
335
|
"name": "aria-invalid",
|
|
336
|
+
"supportedOnRoles": [
|
|
337
|
+
"application",
|
|
338
|
+
"checkbox",
|
|
339
|
+
"columnheader",
|
|
340
|
+
"combobox",
|
|
341
|
+
"gridcell",
|
|
342
|
+
"listbox",
|
|
343
|
+
"radiogroup",
|
|
344
|
+
"rowheader",
|
|
345
|
+
"searchbox",
|
|
346
|
+
"slider",
|
|
347
|
+
"spinbutton",
|
|
348
|
+
"switch",
|
|
349
|
+
"textbox",
|
|
350
|
+
"tree",
|
|
351
|
+
"treegrid"
|
|
352
|
+
],
|
|
157
353
|
"type": "token"
|
|
158
354
|
},
|
|
159
355
|
{
|
|
356
|
+
"isGlobal": true,
|
|
160
357
|
"name": "aria-keyshortcuts",
|
|
161
358
|
"type": "string"
|
|
162
359
|
},
|
|
163
360
|
{
|
|
361
|
+
"isGlobal": true,
|
|
164
362
|
"name": "aria-label",
|
|
363
|
+
"preventedOnRoles": [
|
|
364
|
+
"caption",
|
|
365
|
+
"code",
|
|
366
|
+
"definition",
|
|
367
|
+
"deletion",
|
|
368
|
+
"emphasis",
|
|
369
|
+
"generic",
|
|
370
|
+
"insertion",
|
|
371
|
+
"mark",
|
|
372
|
+
"none",
|
|
373
|
+
"paragraph",
|
|
374
|
+
"strong",
|
|
375
|
+
"subscript",
|
|
376
|
+
"suggestion",
|
|
377
|
+
"superscript",
|
|
378
|
+
"term",
|
|
379
|
+
"time"
|
|
380
|
+
],
|
|
165
381
|
"type": "string"
|
|
166
382
|
},
|
|
167
383
|
{
|
|
384
|
+
"isGlobal": true,
|
|
168
385
|
"name": "aria-labelledby",
|
|
386
|
+
"preventedOnRoles": [
|
|
387
|
+
"caption",
|
|
388
|
+
"code",
|
|
389
|
+
"definition",
|
|
390
|
+
"deletion",
|
|
391
|
+
"emphasis",
|
|
392
|
+
"generic",
|
|
393
|
+
"insertion",
|
|
394
|
+
"mark",
|
|
395
|
+
"none",
|
|
396
|
+
"paragraph",
|
|
397
|
+
"strong",
|
|
398
|
+
"subscript",
|
|
399
|
+
"suggestion",
|
|
400
|
+
"superscript",
|
|
401
|
+
"term",
|
|
402
|
+
"time"
|
|
403
|
+
],
|
|
169
404
|
"type": "IDREF_list"
|
|
170
405
|
},
|
|
171
406
|
{
|
|
407
|
+
"isGlobal": true,
|
|
172
408
|
"name": "aria-labeledby",
|
|
409
|
+
"preventedOnRoles": [
|
|
410
|
+
"caption",
|
|
411
|
+
"code",
|
|
412
|
+
"definition",
|
|
413
|
+
"deletion",
|
|
414
|
+
"emphasis",
|
|
415
|
+
"generic",
|
|
416
|
+
"insertion",
|
|
417
|
+
"mark",
|
|
418
|
+
"none",
|
|
419
|
+
"paragraph",
|
|
420
|
+
"strong",
|
|
421
|
+
"subscript",
|
|
422
|
+
"suggestion",
|
|
423
|
+
"superscript",
|
|
424
|
+
"term",
|
|
425
|
+
"time"
|
|
426
|
+
],
|
|
173
427
|
"type": "IDREF_list"
|
|
174
428
|
},
|
|
175
429
|
{
|
|
176
430
|
"name": "aria-level",
|
|
431
|
+
"supportedOnRoles": [
|
|
432
|
+
"comment",
|
|
433
|
+
"heading",
|
|
434
|
+
"row",
|
|
435
|
+
"treeitem"
|
|
436
|
+
],
|
|
177
437
|
"type": "integer"
|
|
178
438
|
},
|
|
179
439
|
{
|
|
180
|
-
"default": "
|
|
440
|
+
"default": "undefined",
|
|
181
441
|
"enum": [
|
|
182
442
|
"off",
|
|
183
443
|
"polite",
|
|
184
|
-
"assertive"
|
|
444
|
+
"assertive",
|
|
445
|
+
"undefined"
|
|
185
446
|
],
|
|
447
|
+
"isGlobal": true,
|
|
186
448
|
"name": "aria-live",
|
|
187
449
|
"type": "token"
|
|
188
450
|
},
|
|
189
451
|
{
|
|
190
452
|
"default": "false",
|
|
191
453
|
"name": "aria-modal",
|
|
454
|
+
"supportedOnRoles": [
|
|
455
|
+
"alertdialog",
|
|
456
|
+
"dialog"
|
|
457
|
+
],
|
|
192
458
|
"type": "boolean"
|
|
193
459
|
},
|
|
194
460
|
{
|
|
195
461
|
"default": "false",
|
|
196
462
|
"name": "aria-multiline",
|
|
463
|
+
"supportedOnRoles": [
|
|
464
|
+
"searchbox",
|
|
465
|
+
"textbox"
|
|
466
|
+
],
|
|
197
467
|
"type": "boolean"
|
|
198
468
|
},
|
|
199
469
|
{
|
|
200
470
|
"default": "false",
|
|
201
471
|
"name": "aria-multiselectable",
|
|
472
|
+
"supportedOnRoles": [
|
|
473
|
+
"grid",
|
|
474
|
+
"listbox",
|
|
475
|
+
"tablist",
|
|
476
|
+
"tree",
|
|
477
|
+
"treegrid"
|
|
478
|
+
],
|
|
202
479
|
"type": "boolean"
|
|
203
480
|
},
|
|
204
481
|
{
|
|
@@ -209,18 +486,50 @@ export const config = {
|
|
|
209
486
|
"vertical"
|
|
210
487
|
],
|
|
211
488
|
"name": "aria-orientation",
|
|
489
|
+
"supportedOnRoles": [
|
|
490
|
+
"listbox",
|
|
491
|
+
"menu",
|
|
492
|
+
"menubar",
|
|
493
|
+
"radiogroup",
|
|
494
|
+
"scrollbar",
|
|
495
|
+
"select",
|
|
496
|
+
"separator",
|
|
497
|
+
"slider",
|
|
498
|
+
"tablist",
|
|
499
|
+
"toolbar",
|
|
500
|
+
"tree",
|
|
501
|
+
"treegrid"
|
|
502
|
+
],
|
|
212
503
|
"type": "token"
|
|
213
504
|
},
|
|
214
505
|
{
|
|
506
|
+
"isGlobal": true,
|
|
215
507
|
"name": "aria-owns",
|
|
216
508
|
"type": "IDREF_list"
|
|
217
509
|
},
|
|
218
510
|
{
|
|
219
511
|
"name": "aria-placeholder",
|
|
512
|
+
"supportedOnRoles": [
|
|
513
|
+
"searchbox",
|
|
514
|
+
"textbox"
|
|
515
|
+
],
|
|
220
516
|
"type": "string"
|
|
221
517
|
},
|
|
222
518
|
{
|
|
223
519
|
"name": "aria-posinset",
|
|
520
|
+
"supportedOnRoles": [
|
|
521
|
+
"article",
|
|
522
|
+
"comment",
|
|
523
|
+
"listitem",
|
|
524
|
+
"menuitem",
|
|
525
|
+
"menuitemcheckbox",
|
|
526
|
+
"menuitemradio",
|
|
527
|
+
"option",
|
|
528
|
+
"radio",
|
|
529
|
+
"row",
|
|
530
|
+
"tab",
|
|
531
|
+
"treeitem"
|
|
532
|
+
],
|
|
224
533
|
"type": "integer"
|
|
225
534
|
},
|
|
226
535
|
{
|
|
@@ -232,11 +541,30 @@ export const config = {
|
|
|
232
541
|
"undefined"
|
|
233
542
|
],
|
|
234
543
|
"name": "aria-pressed",
|
|
544
|
+
"supportedOnRoles": [
|
|
545
|
+
"button"
|
|
546
|
+
],
|
|
235
547
|
"type": "token"
|
|
236
548
|
},
|
|
237
549
|
{
|
|
238
550
|
"default": "false",
|
|
239
551
|
"name": "aria-readonly",
|
|
552
|
+
"supportedOnRoles": [
|
|
553
|
+
"checkbox",
|
|
554
|
+
"columnheader",
|
|
555
|
+
"combobox",
|
|
556
|
+
"grid",
|
|
557
|
+
"gridcell",
|
|
558
|
+
"listbox",
|
|
559
|
+
"radiogroup",
|
|
560
|
+
"rowheader",
|
|
561
|
+
"searchbox",
|
|
562
|
+
"slider",
|
|
563
|
+
"spinbutton",
|
|
564
|
+
"switch",
|
|
565
|
+
"textbox",
|
|
566
|
+
"treegrid"
|
|
567
|
+
],
|
|
240
568
|
"type": "boolean"
|
|
241
569
|
},
|
|
242
570
|
{
|
|
@@ -247,32 +575,76 @@ export const config = {
|
|
|
247
575
|
"text",
|
|
248
576
|
"all"
|
|
249
577
|
],
|
|
578
|
+
"isGlobal": true,
|
|
250
579
|
"name": "aria-relevant",
|
|
251
580
|
"type": "token_list"
|
|
252
581
|
},
|
|
253
582
|
{
|
|
254
583
|
"default": "false",
|
|
255
584
|
"name": "aria-required",
|
|
585
|
+
"supportedOnRoles": [
|
|
586
|
+
"checkbox",
|
|
587
|
+
"columnheader",
|
|
588
|
+
"combobox",
|
|
589
|
+
"gridcell",
|
|
590
|
+
"listbox",
|
|
591
|
+
"radiogroup",
|
|
592
|
+
"rowheader",
|
|
593
|
+
"searchbox",
|
|
594
|
+
"spinbutton",
|
|
595
|
+
"switch",
|
|
596
|
+
"textbox",
|
|
597
|
+
"tree",
|
|
598
|
+
"treegrid"
|
|
599
|
+
],
|
|
256
600
|
"type": "boolean"
|
|
257
601
|
},
|
|
258
602
|
{
|
|
603
|
+
"isGlobal": true,
|
|
259
604
|
"name": "aria-roledescription",
|
|
605
|
+
"preventedOnRoles": [
|
|
606
|
+
"generic"
|
|
607
|
+
],
|
|
260
608
|
"type": "string"
|
|
261
609
|
},
|
|
262
610
|
{
|
|
263
611
|
"name": "aria-rowcount",
|
|
612
|
+
"supportedOnRoles": [
|
|
613
|
+
"grid",
|
|
614
|
+
"table",
|
|
615
|
+
"treegrid"
|
|
616
|
+
],
|
|
264
617
|
"type": "integer"
|
|
265
618
|
},
|
|
266
619
|
{
|
|
267
620
|
"name": "aria-rowindex",
|
|
621
|
+
"supportedOnRoles": [
|
|
622
|
+
"cell",
|
|
623
|
+
"columnheader",
|
|
624
|
+
"gridcell",
|
|
625
|
+
"row",
|
|
626
|
+
"rowheader"
|
|
627
|
+
],
|
|
268
628
|
"type": "integer"
|
|
269
629
|
},
|
|
270
630
|
{
|
|
271
631
|
"name": "aria-rowindextext",
|
|
632
|
+
"supportedOnRoles": [
|
|
633
|
+
"cell",
|
|
634
|
+
"columnheader",
|
|
635
|
+
"gridcell",
|
|
636
|
+
"row",
|
|
637
|
+
"rowheader"
|
|
638
|
+
],
|
|
272
639
|
"type": "string"
|
|
273
640
|
},
|
|
274
641
|
{
|
|
275
642
|
"name": "aria-rowspan",
|
|
643
|
+
"supportedOnRoles": [
|
|
644
|
+
"cell",
|
|
645
|
+
"columnheader",
|
|
646
|
+
"rowheader"
|
|
647
|
+
],
|
|
276
648
|
"type": "integer"
|
|
277
649
|
},
|
|
278
650
|
{
|
|
@@ -283,10 +655,32 @@ export const config = {
|
|
|
283
655
|
"undefined"
|
|
284
656
|
],
|
|
285
657
|
"name": "aria-selected",
|
|
658
|
+
"supportedOnRoles": [
|
|
659
|
+
"columnheader",
|
|
660
|
+
"gridcell",
|
|
661
|
+
"option",
|
|
662
|
+
"row",
|
|
663
|
+
"rowheader",
|
|
664
|
+
"tab",
|
|
665
|
+
"treeitem"
|
|
666
|
+
],
|
|
286
667
|
"type": "token"
|
|
287
668
|
},
|
|
288
669
|
{
|
|
289
670
|
"name": "aria-setsize",
|
|
671
|
+
"supportedOnRoles": [
|
|
672
|
+
"article",
|
|
673
|
+
"comment",
|
|
674
|
+
"listitem",
|
|
675
|
+
"menuitem",
|
|
676
|
+
"menuitemcheckbox",
|
|
677
|
+
"menuitemradio",
|
|
678
|
+
"option",
|
|
679
|
+
"radio",
|
|
680
|
+
"row",
|
|
681
|
+
"tab",
|
|
682
|
+
"treeitem"
|
|
683
|
+
],
|
|
290
684
|
"type": "integer"
|
|
291
685
|
},
|
|
292
686
|
{
|
|
@@ -298,22 +692,58 @@ export const config = {
|
|
|
298
692
|
"other"
|
|
299
693
|
],
|
|
300
694
|
"name": "aria-sort",
|
|
695
|
+
"supportedOnRoles": [
|
|
696
|
+
"columnheader",
|
|
697
|
+
"rowheader"
|
|
698
|
+
],
|
|
301
699
|
"type": "token"
|
|
302
700
|
},
|
|
303
701
|
{
|
|
304
702
|
"name": "aria-valuemax",
|
|
703
|
+
"supportedOnRoles": [
|
|
704
|
+
"meter",
|
|
705
|
+
"progressbar",
|
|
706
|
+
"scrollbar",
|
|
707
|
+
"separator",
|
|
708
|
+
"slider",
|
|
709
|
+
"spinbutton"
|
|
710
|
+
],
|
|
305
711
|
"type": "decimal"
|
|
306
712
|
},
|
|
307
713
|
{
|
|
308
714
|
"name": "aria-valuemin",
|
|
715
|
+
"supportedOnRoles": [
|
|
716
|
+
"meter",
|
|
717
|
+
"progressbar",
|
|
718
|
+
"scrollbar",
|
|
719
|
+
"separator",
|
|
720
|
+
"slider",
|
|
721
|
+
"spinbutton"
|
|
722
|
+
],
|
|
309
723
|
"type": "decimal"
|
|
310
724
|
},
|
|
311
725
|
{
|
|
312
726
|
"name": "aria-valuenow",
|
|
727
|
+
"supportedOnRoles": [
|
|
728
|
+
"meter",
|
|
729
|
+
"progressbar",
|
|
730
|
+
"scrollbar",
|
|
731
|
+
"separator",
|
|
732
|
+
"slider",
|
|
733
|
+
"spinbutton"
|
|
734
|
+
],
|
|
313
735
|
"type": "decimal"
|
|
314
736
|
},
|
|
315
737
|
{
|
|
316
738
|
"name": "aria-valuetext",
|
|
739
|
+
"supportedOnRoles": [
|
|
740
|
+
"meter",
|
|
741
|
+
"progressbar",
|
|
742
|
+
"scrollbar",
|
|
743
|
+
"separator",
|
|
744
|
+
"slider",
|
|
745
|
+
"spinbutton"
|
|
746
|
+
],
|
|
317
747
|
"type": "string"
|
|
318
748
|
},
|
|
319
749
|
{
|
|
@@ -343,6 +773,9 @@ export const config = {
|
|
|
343
773
|
]
|
|
344
774
|
},
|
|
345
775
|
{
|
|
776
|
+
"internalRoles": [
|
|
777
|
+
"kAlertDialog"
|
|
778
|
+
],
|
|
346
779
|
"name": "alertdialog",
|
|
347
780
|
"nameFrom": [
|
|
348
781
|
"author"
|
|
@@ -370,13 +803,13 @@ export const config = {
|
|
|
370
803
|
],
|
|
371
804
|
"superclasses": [
|
|
372
805
|
"document"
|
|
373
|
-
],
|
|
374
|
-
"supportedAttributes": [
|
|
375
|
-
"aria-posinset",
|
|
376
|
-
"aria-setsize"
|
|
377
806
|
]
|
|
378
807
|
},
|
|
379
808
|
{
|
|
809
|
+
"internalRoles": [
|
|
810
|
+
"kBanner",
|
|
811
|
+
"kHeader"
|
|
812
|
+
],
|
|
380
813
|
"name": "banner",
|
|
381
814
|
"nameFrom": [
|
|
382
815
|
"author"
|
|
@@ -385,8 +818,22 @@ export const config = {
|
|
|
385
818
|
"landmark"
|
|
386
819
|
]
|
|
387
820
|
},
|
|
821
|
+
{
|
|
822
|
+
"name": "blockquote",
|
|
823
|
+
"nameFrom": [
|
|
824
|
+
"author"
|
|
825
|
+
],
|
|
826
|
+
"superclasses": [
|
|
827
|
+
"section"
|
|
828
|
+
]
|
|
829
|
+
},
|
|
388
830
|
{
|
|
389
831
|
"childrenPresentational": true,
|
|
832
|
+
"internalRoles": [
|
|
833
|
+
"kButton",
|
|
834
|
+
"kToggleButton",
|
|
835
|
+
"kPopUpButton"
|
|
836
|
+
],
|
|
390
837
|
"name": "button",
|
|
391
838
|
"nameFrom": [
|
|
392
839
|
"contents",
|
|
@@ -395,33 +842,35 @@ export const config = {
|
|
|
395
842
|
"nameRequired": true,
|
|
396
843
|
"superclasses": [
|
|
397
844
|
"command"
|
|
845
|
+
]
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"name": "caption",
|
|
849
|
+
"nameFrom": [
|
|
850
|
+
"prohibited"
|
|
398
851
|
],
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
"aria-pressed"
|
|
852
|
+
"superclasses": [
|
|
853
|
+
"structure"
|
|
402
854
|
]
|
|
403
855
|
},
|
|
404
856
|
{
|
|
405
857
|
"name": "cell",
|
|
406
|
-
"
|
|
858
|
+
"nameFrom": [
|
|
407
859
|
"contents",
|
|
408
860
|
"author"
|
|
409
861
|
],
|
|
410
862
|
"scope": "row",
|
|
411
863
|
"superclasses": [
|
|
412
864
|
"section"
|
|
413
|
-
],
|
|
414
|
-
"supportedAttributes": [
|
|
415
|
-
"aria-colindex",
|
|
416
|
-
"aria-colspan",
|
|
417
|
-
"aria-rowindex",
|
|
418
|
-
"aria-rowspan"
|
|
419
865
|
]
|
|
420
866
|
},
|
|
421
867
|
{
|
|
422
868
|
"implicitValues": {
|
|
423
869
|
"aria-checked": false
|
|
424
870
|
},
|
|
871
|
+
"internalRoles": [
|
|
872
|
+
"kCheckBox"
|
|
873
|
+
],
|
|
425
874
|
"name": "checkbox",
|
|
426
875
|
"nameFrom": [
|
|
427
876
|
"contents",
|
|
@@ -433,12 +882,21 @@ export const config = {
|
|
|
433
882
|
],
|
|
434
883
|
"superclasses": [
|
|
435
884
|
"input"
|
|
885
|
+
]
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"name": "code",
|
|
889
|
+
"nameFrom": [
|
|
890
|
+
"prohibited"
|
|
436
891
|
],
|
|
437
|
-
"
|
|
438
|
-
"
|
|
892
|
+
"superclasses": [
|
|
893
|
+
"structure"
|
|
439
894
|
]
|
|
440
895
|
},
|
|
441
896
|
{
|
|
897
|
+
"internalRoles": [
|
|
898
|
+
"kColumnHeader"
|
|
899
|
+
],
|
|
442
900
|
"name": "columnheader",
|
|
443
901
|
"nameFrom": [
|
|
444
902
|
"contents",
|
|
@@ -452,9 +910,6 @@ export const config = {
|
|
|
452
910
|
"gridcell",
|
|
453
911
|
"sectionhead",
|
|
454
912
|
"widget"
|
|
455
|
-
],
|
|
456
|
-
"supportedAttributes": [
|
|
457
|
-
"aria-sort"
|
|
458
913
|
]
|
|
459
914
|
},
|
|
460
915
|
{
|
|
@@ -462,6 +917,12 @@ export const config = {
|
|
|
462
917
|
"aria-expanded": "false",
|
|
463
918
|
"aria-haspopup": "listbox"
|
|
464
919
|
},
|
|
920
|
+
"internalRoles": [
|
|
921
|
+
"kComboBoxGrouping",
|
|
922
|
+
"kComboBoxMenuButton",
|
|
923
|
+
"kComboBoxSelect",
|
|
924
|
+
"kTextFieldWithComboBox"
|
|
925
|
+
],
|
|
465
926
|
"mustContain": [
|
|
466
927
|
"textbox"
|
|
467
928
|
],
|
|
@@ -476,11 +937,15 @@ export const config = {
|
|
|
476
937
|
],
|
|
477
938
|
"superclasses": [
|
|
478
939
|
"select"
|
|
940
|
+
]
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "comment",
|
|
944
|
+
"nameFrom": [
|
|
945
|
+
"author"
|
|
479
946
|
],
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
"aria-readonly",
|
|
483
|
-
"aria-required"
|
|
947
|
+
"superclasses": [
|
|
948
|
+
"structure"
|
|
484
949
|
]
|
|
485
950
|
},
|
|
486
951
|
{
|
|
@@ -510,12 +975,13 @@ export const config = {
|
|
|
510
975
|
],
|
|
511
976
|
"superclasses": [
|
|
512
977
|
"widget"
|
|
513
|
-
],
|
|
514
|
-
"supportedAttributes": [
|
|
515
|
-
"aria-activedescendant"
|
|
516
978
|
]
|
|
517
979
|
},
|
|
518
980
|
{
|
|
981
|
+
"internalRoles": [
|
|
982
|
+
"kContentInfo",
|
|
983
|
+
"kFooter"
|
|
984
|
+
],
|
|
519
985
|
"name": "contentinfo",
|
|
520
986
|
"nameFrom": [
|
|
521
987
|
"author"
|
|
@@ -527,12 +993,24 @@ export const config = {
|
|
|
527
993
|
{
|
|
528
994
|
"name": "definition",
|
|
529
995
|
"nameFrom": [
|
|
530
|
-
"
|
|
996
|
+
"prohibited"
|
|
531
997
|
],
|
|
532
998
|
"superclasses": [
|
|
533
999
|
"section"
|
|
534
1000
|
]
|
|
535
1001
|
},
|
|
1002
|
+
{
|
|
1003
|
+
"internalRoles": [
|
|
1004
|
+
"kContentDeletion"
|
|
1005
|
+
],
|
|
1006
|
+
"name": "deletion",
|
|
1007
|
+
"nameFrom": [
|
|
1008
|
+
"prohibited"
|
|
1009
|
+
],
|
|
1010
|
+
"superclasses": [
|
|
1011
|
+
"structure"
|
|
1012
|
+
]
|
|
1013
|
+
},
|
|
536
1014
|
{
|
|
537
1015
|
"name": "dialog",
|
|
538
1016
|
"nameFrom": [
|
|
@@ -544,6 +1022,10 @@ export const config = {
|
|
|
544
1022
|
]
|
|
545
1023
|
},
|
|
546
1024
|
{
|
|
1025
|
+
"deprecated": true,
|
|
1026
|
+
"internalRoles": [
|
|
1027
|
+
"kList"
|
|
1028
|
+
],
|
|
547
1029
|
"name": "directory",
|
|
548
1030
|
"nameFrom": [
|
|
549
1031
|
"author"
|
|
@@ -560,9 +1042,15 @@ export const config = {
|
|
|
560
1042
|
"nameRequired": false,
|
|
561
1043
|
"superclasses": [
|
|
562
1044
|
"structure"
|
|
1045
|
+
]
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"name": "emphasis",
|
|
1049
|
+
"nameFrom": [
|
|
1050
|
+
"prohibited"
|
|
563
1051
|
],
|
|
564
|
-
"
|
|
565
|
-
"
|
|
1052
|
+
"superclasses": [
|
|
1053
|
+
"structure"
|
|
566
1054
|
]
|
|
567
1055
|
},
|
|
568
1056
|
{
|
|
@@ -580,10 +1068,10 @@ export const config = {
|
|
|
580
1068
|
},
|
|
581
1069
|
{
|
|
582
1070
|
"name": "figure",
|
|
583
|
-
"
|
|
584
|
-
"namefrom": [
|
|
1071
|
+
"nameFrom": [
|
|
585
1072
|
"author"
|
|
586
1073
|
],
|
|
1074
|
+
"nameRequired": false,
|
|
587
1075
|
"superclasses": [
|
|
588
1076
|
"section"
|
|
589
1077
|
]
|
|
@@ -593,10 +1081,24 @@ export const config = {
|
|
|
593
1081
|
"nameFrom": [
|
|
594
1082
|
"author"
|
|
595
1083
|
],
|
|
1084
|
+
"nameRequired": true,
|
|
596
1085
|
"superclasses": [
|
|
597
1086
|
"landmark"
|
|
598
1087
|
]
|
|
599
1088
|
},
|
|
1089
|
+
{
|
|
1090
|
+
"internalRoles": [
|
|
1091
|
+
"kGenericContainer",
|
|
1092
|
+
"kSectionWithoutName"
|
|
1093
|
+
],
|
|
1094
|
+
"name": "generic",
|
|
1095
|
+
"nameFrom": [
|
|
1096
|
+
"prohibited"
|
|
1097
|
+
],
|
|
1098
|
+
"superclasses": [
|
|
1099
|
+
"structure"
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
600
1102
|
{
|
|
601
1103
|
"mustContain": [
|
|
602
1104
|
"row"
|
|
@@ -609,14 +1111,12 @@ export const config = {
|
|
|
609
1111
|
"superclasses": [
|
|
610
1112
|
"composite",
|
|
611
1113
|
"table"
|
|
612
|
-
],
|
|
613
|
-
"supportedAttributes": [
|
|
614
|
-
"aria-level",
|
|
615
|
-
"aria-multiselectable",
|
|
616
|
-
"aria-readonly"
|
|
617
1114
|
]
|
|
618
1115
|
},
|
|
619
1116
|
{
|
|
1117
|
+
"internalRoles": [
|
|
1118
|
+
"kGridCell"
|
|
1119
|
+
],
|
|
620
1120
|
"name": "gridcell",
|
|
621
1121
|
"nameFrom": [
|
|
622
1122
|
"contents",
|
|
@@ -629,23 +1129,19 @@ export const config = {
|
|
|
629
1129
|
"superclasses": [
|
|
630
1130
|
"cell",
|
|
631
1131
|
"widget"
|
|
632
|
-
],
|
|
633
|
-
"supportedAttributes": [
|
|
634
|
-
"aria-readonly",
|
|
635
|
-
"aria-required",
|
|
636
|
-
"aria-selected"
|
|
637
1132
|
]
|
|
638
1133
|
},
|
|
639
1134
|
{
|
|
1135
|
+
"internalRoles": [
|
|
1136
|
+
"kGroup",
|
|
1137
|
+
"kDetails"
|
|
1138
|
+
],
|
|
640
1139
|
"name": "group",
|
|
641
1140
|
"nameFrom": [
|
|
642
1141
|
"author"
|
|
643
1142
|
],
|
|
644
1143
|
"superclasses": [
|
|
645
1144
|
"section"
|
|
646
|
-
],
|
|
647
|
-
"supportedAttributes": [
|
|
648
|
-
"aria-activedescendant"
|
|
649
1145
|
]
|
|
650
1146
|
},
|
|
651
1147
|
{
|
|
@@ -653,20 +1149,33 @@ export const config = {
|
|
|
653
1149
|
"aria-level": "2"
|
|
654
1150
|
},
|
|
655
1151
|
"name": "heading",
|
|
656
|
-
"
|
|
657
|
-
"namefrom": [
|
|
1152
|
+
"nameFrom": [
|
|
658
1153
|
"contents",
|
|
659
1154
|
"author"
|
|
660
1155
|
],
|
|
1156
|
+
"nameRequired": true,
|
|
661
1157
|
"superclasses": [
|
|
662
1158
|
"sectionhead"
|
|
1159
|
+
]
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"internalRoles": [
|
|
1163
|
+
"kImage"
|
|
1164
|
+
],
|
|
1165
|
+
"name": "image",
|
|
1166
|
+
"nameFrom": [
|
|
1167
|
+
"author"
|
|
663
1168
|
],
|
|
664
|
-
"
|
|
665
|
-
"
|
|
1169
|
+
"superclasses": [
|
|
1170
|
+
"structure"
|
|
666
1171
|
]
|
|
667
1172
|
},
|
|
668
1173
|
{
|
|
669
1174
|
"childrenPresentational": true,
|
|
1175
|
+
"deprecated": true,
|
|
1176
|
+
"internalRoles": [
|
|
1177
|
+
"kImage"
|
|
1178
|
+
],
|
|
670
1179
|
"name": "img",
|
|
671
1180
|
"nameFrom": [
|
|
672
1181
|
"author"
|
|
@@ -677,10 +1186,22 @@ export const config = {
|
|
|
677
1186
|
]
|
|
678
1187
|
},
|
|
679
1188
|
{
|
|
680
|
-
"
|
|
681
|
-
|
|
1189
|
+
"internalRoles": [
|
|
1190
|
+
"kContentInsertion"
|
|
1191
|
+
],
|
|
1192
|
+
"name": "insertion",
|
|
682
1193
|
"nameFrom": [
|
|
683
|
-
"
|
|
1194
|
+
"prohibited"
|
|
1195
|
+
],
|
|
1196
|
+
"superclasses": [
|
|
1197
|
+
"structure"
|
|
1198
|
+
]
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"abstract": true,
|
|
1202
|
+
"name": "input",
|
|
1203
|
+
"nameFrom": [
|
|
1204
|
+
"author"
|
|
684
1205
|
],
|
|
685
1206
|
"superclasses": [
|
|
686
1207
|
"widget"
|
|
@@ -706,15 +1227,15 @@ export const config = {
|
|
|
706
1227
|
"nameRequired": true,
|
|
707
1228
|
"superclasses": [
|
|
708
1229
|
"command"
|
|
709
|
-
],
|
|
710
|
-
"supportedAttributes": [
|
|
711
|
-
"aria-expanded"
|
|
712
1230
|
]
|
|
713
1231
|
},
|
|
714
1232
|
{
|
|
715
1233
|
"implicitValues": {
|
|
716
1234
|
"aria-orientation": "vertical"
|
|
717
1235
|
},
|
|
1236
|
+
"internalRoles": [
|
|
1237
|
+
"kList"
|
|
1238
|
+
],
|
|
718
1239
|
"mustContain": [
|
|
719
1240
|
"listitem"
|
|
720
1241
|
],
|
|
@@ -730,6 +1251,9 @@ export const config = {
|
|
|
730
1251
|
"implicitValues": {
|
|
731
1252
|
"aria-orientation": "vertical"
|
|
732
1253
|
},
|
|
1254
|
+
"internalRoles": [
|
|
1255
|
+
"kListBox"
|
|
1256
|
+
],
|
|
733
1257
|
"mustContain": [
|
|
734
1258
|
"option"
|
|
735
1259
|
],
|
|
@@ -740,14 +1264,12 @@ export const config = {
|
|
|
740
1264
|
"nameRequired": true,
|
|
741
1265
|
"superclasses": [
|
|
742
1266
|
"select"
|
|
743
|
-
],
|
|
744
|
-
"supportedAttributes": [
|
|
745
|
-
"aria-multiselectable",
|
|
746
|
-
"aria-readonly",
|
|
747
|
-
"aria-required"
|
|
748
1267
|
]
|
|
749
1268
|
},
|
|
750
1269
|
{
|
|
1270
|
+
"internalRoles": [
|
|
1271
|
+
"kListItem"
|
|
1272
|
+
],
|
|
751
1273
|
"name": "listitem",
|
|
752
1274
|
"nameFrom": [
|
|
753
1275
|
"author"
|
|
@@ -758,11 +1280,6 @@ export const config = {
|
|
|
758
1280
|
],
|
|
759
1281
|
"superclasses": [
|
|
760
1282
|
"section"
|
|
761
|
-
],
|
|
762
|
-
"supportedAttributes": [
|
|
763
|
-
"aria-level",
|
|
764
|
-
"aria-posinset",
|
|
765
|
-
"aria-setsize"
|
|
766
1283
|
]
|
|
767
1284
|
},
|
|
768
1285
|
{
|
|
@@ -788,6 +1305,18 @@ export const config = {
|
|
|
788
1305
|
]
|
|
789
1306
|
},
|
|
790
1307
|
{
|
|
1308
|
+
"name": "mark",
|
|
1309
|
+
"nameFrom": [
|
|
1310
|
+
"prohibited"
|
|
1311
|
+
],
|
|
1312
|
+
"superclasses": [
|
|
1313
|
+
"structure"
|
|
1314
|
+
]
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"implicitValues": {
|
|
1318
|
+
"aria-live": "off"
|
|
1319
|
+
},
|
|
791
1320
|
"name": "marquee",
|
|
792
1321
|
"nameFrom": [
|
|
793
1322
|
"author"
|
|
@@ -831,6 +1360,9 @@ export const config = {
|
|
|
831
1360
|
"implicitValues": {
|
|
832
1361
|
"aria-orientation": "horizontal"
|
|
833
1362
|
},
|
|
1363
|
+
"internalRoles": [
|
|
1364
|
+
"kMenuBar"
|
|
1365
|
+
],
|
|
834
1366
|
"mustContain": [
|
|
835
1367
|
"menuitem",
|
|
836
1368
|
"menuitemradio",
|
|
@@ -845,6 +1377,9 @@ export const config = {
|
|
|
845
1377
|
]
|
|
846
1378
|
},
|
|
847
1379
|
{
|
|
1380
|
+
"internalRoles": [
|
|
1381
|
+
"kMenuItem"
|
|
1382
|
+
],
|
|
848
1383
|
"name": "menuitem",
|
|
849
1384
|
"nameFrom": [
|
|
850
1385
|
"contents",
|
|
@@ -865,6 +1400,9 @@ export const config = {
|
|
|
865
1400
|
"implicitValues": {
|
|
866
1401
|
"aria-checked": false
|
|
867
1402
|
},
|
|
1403
|
+
"internalRoles": [
|
|
1404
|
+
"kMenuItemCheckBox"
|
|
1405
|
+
],
|
|
868
1406
|
"name": "menuitemcheckbox",
|
|
869
1407
|
"nameFrom": [
|
|
870
1408
|
"contents",
|
|
@@ -885,6 +1423,9 @@ export const config = {
|
|
|
885
1423
|
"implicitValues": {
|
|
886
1424
|
"aria-checked": false
|
|
887
1425
|
},
|
|
1426
|
+
"internalRoles": [
|
|
1427
|
+
"kMenuItemRadio"
|
|
1428
|
+
],
|
|
888
1429
|
"name": "menuitemradio",
|
|
889
1430
|
"nameFrom": [
|
|
890
1431
|
"contents",
|
|
@@ -901,6 +1442,20 @@ export const config = {
|
|
|
901
1442
|
"radio"
|
|
902
1443
|
]
|
|
903
1444
|
},
|
|
1445
|
+
{
|
|
1446
|
+
"implicitValues": {
|
|
1447
|
+
"aria-valuemax": "100",
|
|
1448
|
+
"aria-valuemin": "0"
|
|
1449
|
+
},
|
|
1450
|
+
"name": "meter",
|
|
1451
|
+
"nameFrom": [
|
|
1452
|
+
"author"
|
|
1453
|
+
],
|
|
1454
|
+
"nameRequired": true,
|
|
1455
|
+
"superclasses": [
|
|
1456
|
+
"structure"
|
|
1457
|
+
]
|
|
1458
|
+
},
|
|
904
1459
|
{
|
|
905
1460
|
"name": "navigation",
|
|
906
1461
|
"nameFrom": [
|
|
@@ -911,7 +1466,13 @@ export const config = {
|
|
|
911
1466
|
]
|
|
912
1467
|
},
|
|
913
1468
|
{
|
|
1469
|
+
"internalRoles": [
|
|
1470
|
+
"kNone"
|
|
1471
|
+
],
|
|
914
1472
|
"name": "none",
|
|
1473
|
+
"nameFrom": [
|
|
1474
|
+
"prohibited"
|
|
1475
|
+
],
|
|
915
1476
|
"superclasses": [
|
|
916
1477
|
"structure"
|
|
917
1478
|
]
|
|
@@ -930,6 +1491,10 @@ export const config = {
|
|
|
930
1491
|
"implicitValues": {
|
|
931
1492
|
"aria-selected": "false"
|
|
932
1493
|
},
|
|
1494
|
+
"internalRoles": [
|
|
1495
|
+
"kListBoxOption",
|
|
1496
|
+
"kMenuListOption"
|
|
1497
|
+
],
|
|
933
1498
|
"name": "option",
|
|
934
1499
|
"nameFrom": [
|
|
935
1500
|
"contents",
|
|
@@ -944,14 +1509,22 @@ export const config = {
|
|
|
944
1509
|
],
|
|
945
1510
|
"superclasses": [
|
|
946
1511
|
"input"
|
|
1512
|
+
]
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"name": "paragraph",
|
|
1516
|
+
"nameFrom": [
|
|
1517
|
+
"prohibited"
|
|
947
1518
|
],
|
|
948
|
-
"
|
|
949
|
-
"
|
|
950
|
-
"aria-posinset",
|
|
951
|
-
"aria-setsize"
|
|
1519
|
+
"superclasses": [
|
|
1520
|
+
"structure"
|
|
952
1521
|
]
|
|
953
1522
|
},
|
|
954
1523
|
{
|
|
1524
|
+
"deprecated": true,
|
|
1525
|
+
"internalRoles": [
|
|
1526
|
+
"kNone"
|
|
1527
|
+
],
|
|
955
1528
|
"name": "presentation",
|
|
956
1529
|
"superclasses": [
|
|
957
1530
|
"structure"
|
|
@@ -959,6 +1532,13 @@ export const config = {
|
|
|
959
1532
|
},
|
|
960
1533
|
{
|
|
961
1534
|
"childrenPresentational": true,
|
|
1535
|
+
"implicitValues": {
|
|
1536
|
+
"aria-valuemax": "100",
|
|
1537
|
+
"aria-valuemin": "0"
|
|
1538
|
+
},
|
|
1539
|
+
"internalRoles": [
|
|
1540
|
+
"kProgressIndicator"
|
|
1541
|
+
],
|
|
962
1542
|
"name": "progressbar",
|
|
963
1543
|
"nameFrom": [
|
|
964
1544
|
"author"
|
|
@@ -973,6 +1553,9 @@ export const config = {
|
|
|
973
1553
|
"implicitValues": {
|
|
974
1554
|
"aria-checked": "false"
|
|
975
1555
|
},
|
|
1556
|
+
"internalRoles": [
|
|
1557
|
+
"kRadioButton"
|
|
1558
|
+
],
|
|
976
1559
|
"name": "radio",
|
|
977
1560
|
"nameFrom": [
|
|
978
1561
|
"contents",
|
|
@@ -984,13 +1567,12 @@ export const config = {
|
|
|
984
1567
|
],
|
|
985
1568
|
"superclasses": [
|
|
986
1569
|
"input"
|
|
987
|
-
],
|
|
988
|
-
"supportedAttributes": [
|
|
989
|
-
"aria-posinset",
|
|
990
|
-
"aria-setsize"
|
|
991
1570
|
]
|
|
992
1571
|
},
|
|
993
1572
|
{
|
|
1573
|
+
"internalRoles": [
|
|
1574
|
+
"kRadioGroup"
|
|
1575
|
+
],
|
|
994
1576
|
"mustContain": [
|
|
995
1577
|
"radio"
|
|
996
1578
|
],
|
|
@@ -1001,10 +1583,6 @@ export const config = {
|
|
|
1001
1583
|
"nameRequired": true,
|
|
1002
1584
|
"superclasses": [
|
|
1003
1585
|
"select"
|
|
1004
|
-
],
|
|
1005
|
-
"supportedAttributes": [
|
|
1006
|
-
"aria-readonly",
|
|
1007
|
-
"aria-required"
|
|
1008
1586
|
]
|
|
1009
1587
|
},
|
|
1010
1588
|
{
|
|
@@ -1015,12 +1593,6 @@ export const config = {
|
|
|
1015
1593
|
],
|
|
1016
1594
|
"superclasses": [
|
|
1017
1595
|
"widget"
|
|
1018
|
-
],
|
|
1019
|
-
"supportedAttributes": [
|
|
1020
|
-
"aria-valuemax",
|
|
1021
|
-
"aria-valuemin",
|
|
1022
|
-
"aria-valuenow",
|
|
1023
|
-
"aria-valuetext"
|
|
1024
1596
|
]
|
|
1025
1597
|
},
|
|
1026
1598
|
{
|
|
@@ -1035,30 +1607,7 @@ export const config = {
|
|
|
1035
1607
|
},
|
|
1036
1608
|
{
|
|
1037
1609
|
"abstract": true,
|
|
1038
|
-
"name": "roletype"
|
|
1039
|
-
"supportedAttributes": [
|
|
1040
|
-
"aria-atomic",
|
|
1041
|
-
"aria-busy",
|
|
1042
|
-
"aria-controls",
|
|
1043
|
-
"aria-current",
|
|
1044
|
-
"aria-describedby",
|
|
1045
|
-
"aria-details",
|
|
1046
|
-
"aria-disabled",
|
|
1047
|
-
"aria-dropeffect",
|
|
1048
|
-
"aria-errormessage",
|
|
1049
|
-
"aria-flowto",
|
|
1050
|
-
"aria-grabbed",
|
|
1051
|
-
"aria-haspopup",
|
|
1052
|
-
"aria-hidden",
|
|
1053
|
-
"aria-invalid",
|
|
1054
|
-
"aria-keyshortcuts",
|
|
1055
|
-
"aria-label",
|
|
1056
|
-
"aria-labelledby",
|
|
1057
|
-
"aria-live",
|
|
1058
|
-
"aria-owns",
|
|
1059
|
-
"aria-relevant",
|
|
1060
|
-
"aria-roledescription"
|
|
1061
|
-
]
|
|
1610
|
+
"name": "roletype"
|
|
1062
1611
|
},
|
|
1063
1612
|
{
|
|
1064
1613
|
"mustContain": [
|
|
@@ -1081,23 +1630,17 @@ export const config = {
|
|
|
1081
1630
|
"superclasses": [
|
|
1082
1631
|
"group",
|
|
1083
1632
|
"widget"
|
|
1084
|
-
],
|
|
1085
|
-
"supportedAttributes": [
|
|
1086
|
-
"aria-colindex",
|
|
1087
|
-
"aria-level",
|
|
1088
|
-
"aria-rowindex",
|
|
1089
|
-
"aria-selected",
|
|
1090
|
-
"aria-setsize",
|
|
1091
|
-
"aria-posinset"
|
|
1092
1633
|
]
|
|
1093
1634
|
},
|
|
1094
1635
|
{
|
|
1636
|
+
"internalRoles": [
|
|
1637
|
+
"kRowGroup"
|
|
1638
|
+
],
|
|
1095
1639
|
"mustContain": [
|
|
1096
1640
|
"row"
|
|
1097
1641
|
],
|
|
1098
1642
|
"name": "rowgroup",
|
|
1099
1643
|
"nameFrom": [
|
|
1100
|
-
"contents",
|
|
1101
1644
|
"author"
|
|
1102
1645
|
],
|
|
1103
1646
|
"scope": [
|
|
@@ -1110,6 +1653,9 @@ export const config = {
|
|
|
1110
1653
|
]
|
|
1111
1654
|
},
|
|
1112
1655
|
{
|
|
1656
|
+
"internalRoles": [
|
|
1657
|
+
"kRowHeader"
|
|
1658
|
+
],
|
|
1113
1659
|
"name": "rowheader",
|
|
1114
1660
|
"nameFrom": [
|
|
1115
1661
|
"contents",
|
|
@@ -1123,9 +1669,6 @@ export const config = {
|
|
|
1123
1669
|
"cell",
|
|
1124
1670
|
"gridcell",
|
|
1125
1671
|
"sectionhead"
|
|
1126
|
-
],
|
|
1127
|
-
"supportedAttributes": [
|
|
1128
|
-
"aria-sort"
|
|
1129
1672
|
]
|
|
1130
1673
|
},
|
|
1131
1674
|
{
|
|
@@ -1135,6 +1678,9 @@ export const config = {
|
|
|
1135
1678
|
"aria-valuemax": "100",
|
|
1136
1679
|
"aria-valuemin": "0"
|
|
1137
1680
|
},
|
|
1681
|
+
"internalRoles": [
|
|
1682
|
+
"kScrollBar"
|
|
1683
|
+
],
|
|
1138
1684
|
"name": "scrollbar",
|
|
1139
1685
|
"nameFrom": [
|
|
1140
1686
|
"author"
|
|
@@ -1161,6 +1707,9 @@ export const config = {
|
|
|
1161
1707
|
]
|
|
1162
1708
|
},
|
|
1163
1709
|
{
|
|
1710
|
+
"internalRoles": [
|
|
1711
|
+
"kSearchBox"
|
|
1712
|
+
],
|
|
1164
1713
|
"name": "searchbox",
|
|
1165
1714
|
"nameFrom": [
|
|
1166
1715
|
"author"
|
|
@@ -1175,9 +1724,6 @@ export const config = {
|
|
|
1175
1724
|
"name": "section",
|
|
1176
1725
|
"superclasses": [
|
|
1177
1726
|
"structure"
|
|
1178
|
-
],
|
|
1179
|
-
"supportedAttributes": [
|
|
1180
|
-
"aria-expanded"
|
|
1181
1727
|
]
|
|
1182
1728
|
},
|
|
1183
1729
|
{
|
|
@@ -1189,9 +1735,6 @@ export const config = {
|
|
|
1189
1735
|
],
|
|
1190
1736
|
"superclasses": [
|
|
1191
1737
|
"structure"
|
|
1192
|
-
],
|
|
1193
|
-
"supportedAttributes": [
|
|
1194
|
-
"aria-expanded"
|
|
1195
1738
|
]
|
|
1196
1739
|
},
|
|
1197
1740
|
{
|
|
@@ -1206,19 +1749,20 @@ export const config = {
|
|
|
1206
1749
|
]
|
|
1207
1750
|
},
|
|
1208
1751
|
{
|
|
1752
|
+
"implicitValues": {
|
|
1753
|
+
"aria-orientation": "horizontal",
|
|
1754
|
+
"aria-valuemax": "100",
|
|
1755
|
+
"aria-valuemin": "0"
|
|
1756
|
+
},
|
|
1757
|
+
"internalRoles": [
|
|
1758
|
+
"kSplitter"
|
|
1759
|
+
],
|
|
1209
1760
|
"name": "separator",
|
|
1210
1761
|
"nameFrom": [
|
|
1211
1762
|
"author"
|
|
1212
1763
|
],
|
|
1213
1764
|
"superclasses": [
|
|
1214
1765
|
"structure"
|
|
1215
|
-
],
|
|
1216
|
-
"supportedAttributes": [
|
|
1217
|
-
"aria-orientation",
|
|
1218
|
-
"aria-valuemin",
|
|
1219
|
-
"aria-valuemax",
|
|
1220
|
-
"aria-valuenow",
|
|
1221
|
-
"aria-valuetext"
|
|
1222
1766
|
]
|
|
1223
1767
|
},
|
|
1224
1768
|
{
|
|
@@ -1241,15 +1785,12 @@ export const config = {
|
|
|
1241
1785
|
"superclasses": [
|
|
1242
1786
|
"input",
|
|
1243
1787
|
"range"
|
|
1244
|
-
],
|
|
1245
|
-
"supportedAttributes": [
|
|
1246
|
-
"aria-orientation"
|
|
1247
1788
|
]
|
|
1248
1789
|
},
|
|
1249
1790
|
{
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
|
|
1791
|
+
"internalRoles": [
|
|
1792
|
+
"kSpinButton"
|
|
1793
|
+
],
|
|
1253
1794
|
"name": "spinbutton",
|
|
1254
1795
|
"nameFrom": [
|
|
1255
1796
|
"author"
|
|
@@ -1264,10 +1805,6 @@ export const config = {
|
|
|
1264
1805
|
"composite",
|
|
1265
1806
|
"input",
|
|
1266
1807
|
"range"
|
|
1267
|
-
],
|
|
1268
|
-
"supportedAttributes": [
|
|
1269
|
-
"aria-required",
|
|
1270
|
-
"aria-readonly"
|
|
1271
1808
|
]
|
|
1272
1809
|
},
|
|
1273
1810
|
{
|
|
@@ -1283,6 +1820,15 @@ export const config = {
|
|
|
1283
1820
|
"section"
|
|
1284
1821
|
]
|
|
1285
1822
|
},
|
|
1823
|
+
{
|
|
1824
|
+
"name": "strong",
|
|
1825
|
+
"nameFrom": [
|
|
1826
|
+
"prohibited"
|
|
1827
|
+
],
|
|
1828
|
+
"superclasses": [
|
|
1829
|
+
"structure"
|
|
1830
|
+
]
|
|
1831
|
+
},
|
|
1286
1832
|
{
|
|
1287
1833
|
"abstract": true,
|
|
1288
1834
|
"name": "structure",
|
|
@@ -1290,6 +1836,33 @@ export const config = {
|
|
|
1290
1836
|
"roletype"
|
|
1291
1837
|
]
|
|
1292
1838
|
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "subscript",
|
|
1841
|
+
"nameFrom": [
|
|
1842
|
+
"prohibited"
|
|
1843
|
+
],
|
|
1844
|
+
"superclasses": [
|
|
1845
|
+
"structure"
|
|
1846
|
+
]
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
"name": "suggestion",
|
|
1850
|
+
"nameFrom": [
|
|
1851
|
+
"prohibited"
|
|
1852
|
+
],
|
|
1853
|
+
"superclasses": [
|
|
1854
|
+
"structure"
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"name": "superscript",
|
|
1859
|
+
"nameFrom": [
|
|
1860
|
+
"prohibited"
|
|
1861
|
+
],
|
|
1862
|
+
"superclasses": [
|
|
1863
|
+
"structure"
|
|
1864
|
+
]
|
|
1865
|
+
},
|
|
1293
1866
|
{
|
|
1294
1867
|
"childrenPresentational": true,
|
|
1295
1868
|
"implicitValues": {
|
|
@@ -1324,9 +1897,6 @@ export const config = {
|
|
|
1324
1897
|
"superclasses": [
|
|
1325
1898
|
"sectionhead",
|
|
1326
1899
|
"widget"
|
|
1327
|
-
],
|
|
1328
|
-
"supportedAttributes": [
|
|
1329
|
-
"aria-selected"
|
|
1330
1900
|
]
|
|
1331
1901
|
},
|
|
1332
1902
|
{
|
|
@@ -1340,16 +1910,15 @@ export const config = {
|
|
|
1340
1910
|
"nameRequired": true,
|
|
1341
1911
|
"superclasses": [
|
|
1342
1912
|
"section"
|
|
1343
|
-
],
|
|
1344
|
-
"supportedAttributes": [
|
|
1345
|
-
"aria-colcount",
|
|
1346
|
-
"aria-rowcount"
|
|
1347
1913
|
]
|
|
1348
1914
|
},
|
|
1349
1915
|
{
|
|
1350
1916
|
"implicitValues": {
|
|
1351
1917
|
"aria-orientation": "horizontal"
|
|
1352
1918
|
},
|
|
1919
|
+
"internalRoles": [
|
|
1920
|
+
"kTabList"
|
|
1921
|
+
],
|
|
1353
1922
|
"mustContain": [
|
|
1354
1923
|
"tab"
|
|
1355
1924
|
],
|
|
@@ -1359,14 +1928,12 @@ export const config = {
|
|
|
1359
1928
|
],
|
|
1360
1929
|
"superclasses": [
|
|
1361
1930
|
"composite"
|
|
1362
|
-
],
|
|
1363
|
-
"supportedAttributes": [
|
|
1364
|
-
"aria-level",
|
|
1365
|
-
"aria-multiselectable",
|
|
1366
|
-
"aria-orientation"
|
|
1367
1931
|
]
|
|
1368
1932
|
},
|
|
1369
1933
|
{
|
|
1934
|
+
"internalRoles": [
|
|
1935
|
+
"kTabPanel"
|
|
1936
|
+
],
|
|
1370
1937
|
"name": "tabpanel",
|
|
1371
1938
|
"nameFrom": [
|
|
1372
1939
|
"author"
|
|
@@ -1379,13 +1946,25 @@ export const config = {
|
|
|
1379
1946
|
{
|
|
1380
1947
|
"name": "term",
|
|
1381
1948
|
"nameFrom": [
|
|
1382
|
-
"
|
|
1949
|
+
"prohibited"
|
|
1383
1950
|
],
|
|
1384
1951
|
"superclasses": [
|
|
1385
1952
|
"section"
|
|
1386
1953
|
]
|
|
1387
1954
|
},
|
|
1388
1955
|
{
|
|
1956
|
+
"name": "time",
|
|
1957
|
+
"nameFrom": [
|
|
1958
|
+
"prohibited"
|
|
1959
|
+
],
|
|
1960
|
+
"superclasses": [
|
|
1961
|
+
"structure"
|
|
1962
|
+
]
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"internalRoles": [
|
|
1966
|
+
"kTextField"
|
|
1967
|
+
],
|
|
1389
1968
|
"name": "textbox",
|
|
1390
1969
|
"nameFrom": [
|
|
1391
1970
|
"author"
|
|
@@ -1393,17 +1972,12 @@ export const config = {
|
|
|
1393
1972
|
"nameRequired": true,
|
|
1394
1973
|
"superclasses": [
|
|
1395
1974
|
"input"
|
|
1396
|
-
],
|
|
1397
|
-
"supportedAttributes": [
|
|
1398
|
-
"aria-activedescendant",
|
|
1399
|
-
"aria-autocomplete",
|
|
1400
|
-
"aria-multiline",
|
|
1401
|
-
"aria-placeholder",
|
|
1402
|
-
"aria-readonly",
|
|
1403
|
-
"aria-required"
|
|
1404
1975
|
]
|
|
1405
1976
|
},
|
|
1406
1977
|
{
|
|
1978
|
+
"implicitValues": {
|
|
1979
|
+
"aria-live": "off"
|
|
1980
|
+
},
|
|
1407
1981
|
"name": "timer",
|
|
1408
1982
|
"nameFrom": [
|
|
1409
1983
|
"author"
|
|
@@ -1422,9 +1996,6 @@ export const config = {
|
|
|
1422
1996
|
],
|
|
1423
1997
|
"superclasses": [
|
|
1424
1998
|
"group"
|
|
1425
|
-
],
|
|
1426
|
-
"supportedAttributes": [
|
|
1427
|
-
"aria-orientation"
|
|
1428
1999
|
]
|
|
1429
2000
|
},
|
|
1430
2001
|
{
|
|
@@ -1453,13 +2024,12 @@ export const config = {
|
|
|
1453
2024
|
"nameRequired": true,
|
|
1454
2025
|
"superclasses": [
|
|
1455
2026
|
"select"
|
|
1456
|
-
],
|
|
1457
|
-
"supportedAttributes": [
|
|
1458
|
-
"aria-multiselectable",
|
|
1459
|
-
"aria-required"
|
|
1460
2027
|
]
|
|
1461
2028
|
},
|
|
1462
2029
|
{
|
|
2030
|
+
"internalRoles": [
|
|
2031
|
+
"kTreeGrid"
|
|
2032
|
+
],
|
|
1463
2033
|
"mustContain": [
|
|
1464
2034
|
"row"
|
|
1465
2035
|
],
|
|
@@ -1474,6 +2044,9 @@ export const config = {
|
|
|
1474
2044
|
]
|
|
1475
2045
|
},
|
|
1476
2046
|
{
|
|
2047
|
+
"internalRoles": [
|
|
2048
|
+
"kTreeItem"
|
|
2049
|
+
],
|
|
1477
2050
|
"name": "treeitem",
|
|
1478
2051
|
"nameFrom": [
|
|
1479
2052
|
"contents",
|
|
@@ -1504,10 +2077,564 @@ export const config = {
|
|
|
1504
2077
|
],
|
|
1505
2078
|
"superclasses": [
|
|
1506
2079
|
"roletype"
|
|
2080
|
+
]
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
"internalRoles": [
|
|
2084
|
+
"kSectionFooter"
|
|
2085
|
+
],
|
|
2086
|
+
"name": "sectionfooter",
|
|
2087
|
+
"nameFrom": [
|
|
2088
|
+
"author"
|
|
2089
|
+
],
|
|
2090
|
+
"superclasses": [
|
|
2091
|
+
"contentinfo"
|
|
2092
|
+
]
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"internalRoles": [
|
|
2096
|
+
"kSectionHeader"
|
|
2097
|
+
],
|
|
2098
|
+
"name": "sectionheader",
|
|
2099
|
+
"nameFrom": [
|
|
2100
|
+
"author"
|
|
2101
|
+
],
|
|
2102
|
+
"superclasses": [
|
|
2103
|
+
"banner"
|
|
2104
|
+
]
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"internalRoles": [
|
|
2108
|
+
"kDocAbstract"
|
|
2109
|
+
],
|
|
2110
|
+
"name": "doc-abstract",
|
|
2111
|
+
"nameFrom": [
|
|
2112
|
+
"author"
|
|
2113
|
+
],
|
|
2114
|
+
"superclasses": [
|
|
2115
|
+
"section"
|
|
2116
|
+
]
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"internalRoles": [
|
|
2120
|
+
"kDocAcknowledgments"
|
|
2121
|
+
],
|
|
2122
|
+
"name": "doc-acknowledgments",
|
|
2123
|
+
"nameFrom": [
|
|
2124
|
+
"author"
|
|
2125
|
+
],
|
|
2126
|
+
"superclasses": [
|
|
2127
|
+
"landmark"
|
|
2128
|
+
]
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"internalRoles": [
|
|
2132
|
+
"kDocAfterword"
|
|
2133
|
+
],
|
|
2134
|
+
"name": "doc-afterword",
|
|
2135
|
+
"nameFrom": [
|
|
2136
|
+
"author"
|
|
2137
|
+
],
|
|
2138
|
+
"superclasses": [
|
|
2139
|
+
"landmark"
|
|
2140
|
+
]
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
"internalRoles": [
|
|
2144
|
+
"kDocAppendix"
|
|
2145
|
+
],
|
|
2146
|
+
"name": "doc-appendix",
|
|
2147
|
+
"nameFrom": [
|
|
2148
|
+
"author"
|
|
2149
|
+
],
|
|
2150
|
+
"superclasses": [
|
|
2151
|
+
"landmark"
|
|
2152
|
+
]
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"internalRoles": [
|
|
2156
|
+
"kDocBackLink"
|
|
2157
|
+
],
|
|
2158
|
+
"name": "doc-backlink",
|
|
2159
|
+
"nameFrom": [
|
|
2160
|
+
"contents",
|
|
2161
|
+
"author"
|
|
2162
|
+
],
|
|
2163
|
+
"superclasses": [
|
|
2164
|
+
"link"
|
|
2165
|
+
]
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
"internalRoles": [
|
|
2169
|
+
"kDocBiblioEntry"
|
|
2170
|
+
],
|
|
2171
|
+
"name": "doc-biblioentry",
|
|
2172
|
+
"nameFrom": [
|
|
2173
|
+
"author"
|
|
2174
|
+
],
|
|
2175
|
+
"superclasses": [
|
|
2176
|
+
"listitem"
|
|
2177
|
+
]
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"internalRoles": [
|
|
2181
|
+
"kDocBibliography"
|
|
2182
|
+
],
|
|
2183
|
+
"name": "doc-bibliography",
|
|
2184
|
+
"nameFrom": [
|
|
2185
|
+
"author"
|
|
2186
|
+
],
|
|
2187
|
+
"superclasses": [
|
|
2188
|
+
"landmark"
|
|
2189
|
+
]
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"internalRoles": [
|
|
2193
|
+
"kDocBiblioRef"
|
|
2194
|
+
],
|
|
2195
|
+
"name": "doc-biblioref",
|
|
2196
|
+
"nameFrom": [
|
|
2197
|
+
"contents",
|
|
2198
|
+
"author"
|
|
2199
|
+
],
|
|
2200
|
+
"superclasses": [
|
|
2201
|
+
"link"
|
|
2202
|
+
]
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"internalRoles": [
|
|
2206
|
+
"kDocChapter"
|
|
2207
|
+
],
|
|
2208
|
+
"name": "doc-chapter",
|
|
2209
|
+
"nameFrom": [
|
|
2210
|
+
"author"
|
|
2211
|
+
],
|
|
2212
|
+
"superclasses": [
|
|
2213
|
+
"landmark"
|
|
2214
|
+
]
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"internalRoles": [
|
|
2218
|
+
"kDocColophon"
|
|
2219
|
+
],
|
|
2220
|
+
"name": "doc-colophon",
|
|
2221
|
+
"nameFrom": [
|
|
2222
|
+
"author"
|
|
2223
|
+
],
|
|
2224
|
+
"superclasses": [
|
|
2225
|
+
"section"
|
|
2226
|
+
]
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
"internalRoles": [
|
|
2230
|
+
"kDocConclusion"
|
|
2231
|
+
],
|
|
2232
|
+
"name": "doc-conclusion",
|
|
2233
|
+
"nameFrom": [
|
|
2234
|
+
"author"
|
|
1507
2235
|
],
|
|
1508
|
-
"
|
|
1509
|
-
"
|
|
1510
|
-
|
|
2236
|
+
"superclasses": [
|
|
2237
|
+
"landmark"
|
|
2238
|
+
]
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"internalRoles": [
|
|
2242
|
+
"kDocCover"
|
|
2243
|
+
],
|
|
2244
|
+
"name": "doc-cover",
|
|
2245
|
+
"nameFrom": [
|
|
2246
|
+
"author"
|
|
2247
|
+
],
|
|
2248
|
+
"superclasses": [
|
|
2249
|
+
"img"
|
|
2250
|
+
]
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
"internalRoles": [
|
|
2254
|
+
"kDocCredit"
|
|
2255
|
+
],
|
|
2256
|
+
"name": "doc-credit",
|
|
2257
|
+
"nameFrom": [
|
|
2258
|
+
"author"
|
|
2259
|
+
],
|
|
2260
|
+
"superclasses": [
|
|
2261
|
+
"section"
|
|
2262
|
+
]
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"internalRoles": [
|
|
2266
|
+
"kDocCredits"
|
|
2267
|
+
],
|
|
2268
|
+
"name": "doc-credits",
|
|
2269
|
+
"nameFrom": [
|
|
2270
|
+
"author"
|
|
2271
|
+
],
|
|
2272
|
+
"superclasses": [
|
|
2273
|
+
"landmark"
|
|
2274
|
+
]
|
|
2275
|
+
},
|
|
2276
|
+
{
|
|
2277
|
+
"internalRoles": [
|
|
2278
|
+
"kDocDedication"
|
|
2279
|
+
],
|
|
2280
|
+
"name": "doc-dedication",
|
|
2281
|
+
"nameFrom": [
|
|
2282
|
+
"author"
|
|
2283
|
+
],
|
|
2284
|
+
"superclasses": [
|
|
2285
|
+
"section"
|
|
2286
|
+
]
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"internalRoles": [
|
|
2290
|
+
"kDocEndnote"
|
|
2291
|
+
],
|
|
2292
|
+
"name": "doc-endnote",
|
|
2293
|
+
"nameFrom": [
|
|
2294
|
+
"author"
|
|
2295
|
+
],
|
|
2296
|
+
"superclasses": [
|
|
2297
|
+
"listitem"
|
|
2298
|
+
]
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"internalRoles": [
|
|
2302
|
+
"kDocEndnotes"
|
|
2303
|
+
],
|
|
2304
|
+
"name": "doc-endnotes",
|
|
2305
|
+
"nameFrom": [
|
|
2306
|
+
"author"
|
|
2307
|
+
],
|
|
2308
|
+
"superclasses": [
|
|
2309
|
+
"landmark"
|
|
2310
|
+
]
|
|
2311
|
+
},
|
|
2312
|
+
{
|
|
2313
|
+
"internalRoles": [
|
|
2314
|
+
"kDocEpigraph"
|
|
2315
|
+
],
|
|
2316
|
+
"name": "doc-epigraph",
|
|
2317
|
+
"nameFrom": [
|
|
2318
|
+
"author"
|
|
2319
|
+
],
|
|
2320
|
+
"superclasses": [
|
|
2321
|
+
"section"
|
|
2322
|
+
]
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"internalRoles": [
|
|
2326
|
+
"kDocEpilogue"
|
|
2327
|
+
],
|
|
2328
|
+
"name": "doc-epilogue",
|
|
2329
|
+
"nameFrom": [
|
|
2330
|
+
"author"
|
|
2331
|
+
],
|
|
2332
|
+
"superclasses": [
|
|
2333
|
+
"landmark"
|
|
2334
|
+
]
|
|
2335
|
+
},
|
|
2336
|
+
{
|
|
2337
|
+
"internalRoles": [
|
|
2338
|
+
"kDocErrata"
|
|
2339
|
+
],
|
|
2340
|
+
"name": "doc-errata",
|
|
2341
|
+
"nameFrom": [
|
|
2342
|
+
"author"
|
|
2343
|
+
],
|
|
2344
|
+
"superclasses": [
|
|
2345
|
+
"landmark"
|
|
2346
|
+
]
|
|
2347
|
+
},
|
|
2348
|
+
{
|
|
2349
|
+
"internalRoles": [
|
|
2350
|
+
"kDocExample"
|
|
2351
|
+
],
|
|
2352
|
+
"name": "doc-example",
|
|
2353
|
+
"nameFrom": [
|
|
2354
|
+
"author"
|
|
2355
|
+
],
|
|
2356
|
+
"superclasses": [
|
|
2357
|
+
"section"
|
|
2358
|
+
]
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
"internalRoles": [
|
|
2362
|
+
"kDocFootnote"
|
|
2363
|
+
],
|
|
2364
|
+
"name": "doc-footnote",
|
|
2365
|
+
"nameFrom": [
|
|
2366
|
+
"author"
|
|
2367
|
+
],
|
|
2368
|
+
"superclasses": [
|
|
2369
|
+
"section"
|
|
2370
|
+
]
|
|
2371
|
+
},
|
|
2372
|
+
{
|
|
2373
|
+
"internalRoles": [
|
|
2374
|
+
"kDocForeword"
|
|
2375
|
+
],
|
|
2376
|
+
"name": "doc-foreword",
|
|
2377
|
+
"nameFrom": [
|
|
2378
|
+
"author"
|
|
2379
|
+
],
|
|
2380
|
+
"superclasses": [
|
|
2381
|
+
"landmark"
|
|
2382
|
+
]
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
"internalRoles": [
|
|
2386
|
+
"kDocGlossary"
|
|
2387
|
+
],
|
|
2388
|
+
"name": "doc-glossary",
|
|
2389
|
+
"nameFrom": [
|
|
2390
|
+
"author"
|
|
2391
|
+
],
|
|
2392
|
+
"superclasses": [
|
|
2393
|
+
"landmark"
|
|
2394
|
+
]
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"internalRoles": [
|
|
2398
|
+
"kDocGlossRef"
|
|
2399
|
+
],
|
|
2400
|
+
"name": "doc-glossref",
|
|
2401
|
+
"nameFrom": [
|
|
2402
|
+
"contents",
|
|
2403
|
+
"author"
|
|
2404
|
+
],
|
|
2405
|
+
"superclasses": [
|
|
2406
|
+
"link"
|
|
2407
|
+
]
|
|
2408
|
+
},
|
|
2409
|
+
{
|
|
2410
|
+
"internalRoles": [
|
|
2411
|
+
"kDocIndex"
|
|
2412
|
+
],
|
|
2413
|
+
"name": "doc-index",
|
|
2414
|
+
"nameFrom": [
|
|
2415
|
+
"author"
|
|
2416
|
+
],
|
|
2417
|
+
"superclasses": [
|
|
2418
|
+
"navigation"
|
|
2419
|
+
]
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
"internalRoles": [
|
|
2423
|
+
"kDocIntroduction"
|
|
2424
|
+
],
|
|
2425
|
+
"name": "doc-introduction",
|
|
2426
|
+
"nameFrom": [
|
|
2427
|
+
"author"
|
|
2428
|
+
],
|
|
2429
|
+
"superclasses": [
|
|
2430
|
+
"landmark"
|
|
2431
|
+
]
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"internalRoles": [
|
|
2435
|
+
"kDocNoteRef"
|
|
2436
|
+
],
|
|
2437
|
+
"name": "doc-noteref",
|
|
2438
|
+
"nameFrom": [
|
|
2439
|
+
"contents",
|
|
2440
|
+
"author"
|
|
2441
|
+
],
|
|
2442
|
+
"superclasses": [
|
|
2443
|
+
"link"
|
|
2444
|
+
]
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"internalRoles": [
|
|
2448
|
+
"kDocNotice"
|
|
2449
|
+
],
|
|
2450
|
+
"name": "doc-notice",
|
|
2451
|
+
"nameFrom": [
|
|
2452
|
+
"author"
|
|
2453
|
+
],
|
|
2454
|
+
"superclasses": [
|
|
2455
|
+
"note"
|
|
2456
|
+
]
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
"internalRoles": [
|
|
2460
|
+
"kDocPageBreak"
|
|
2461
|
+
],
|
|
2462
|
+
"name": "doc-pagebreak",
|
|
2463
|
+
"nameFrom": [
|
|
2464
|
+
"author"
|
|
2465
|
+
],
|
|
2466
|
+
"superclasses": [
|
|
2467
|
+
"separator"
|
|
2468
|
+
]
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
"internalRoles": [
|
|
2472
|
+
"kDocPageFooter"
|
|
2473
|
+
],
|
|
2474
|
+
"name": "doc-pagefooter",
|
|
2475
|
+
"nameFrom": [
|
|
2476
|
+
"author"
|
|
2477
|
+
],
|
|
2478
|
+
"superclasses": [
|
|
2479
|
+
"contentinfo"
|
|
2480
|
+
]
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
"internalRoles": [
|
|
2484
|
+
"kDocPageHeader"
|
|
2485
|
+
],
|
|
2486
|
+
"name": "doc-pageheader",
|
|
2487
|
+
"nameFrom": [
|
|
2488
|
+
"author"
|
|
2489
|
+
],
|
|
2490
|
+
"superclasses": [
|
|
2491
|
+
"banner"
|
|
2492
|
+
]
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
"internalRoles": [
|
|
2496
|
+
"kDocPageList"
|
|
2497
|
+
],
|
|
2498
|
+
"name": "doc-pagelist",
|
|
2499
|
+
"nameFrom": [
|
|
2500
|
+
"author"
|
|
2501
|
+
],
|
|
2502
|
+
"superclasses": [
|
|
2503
|
+
"navigation"
|
|
2504
|
+
]
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"internalRoles": [
|
|
2508
|
+
"kDocPart"
|
|
2509
|
+
],
|
|
2510
|
+
"name": "doc-part",
|
|
2511
|
+
"nameFrom": [
|
|
2512
|
+
"author"
|
|
2513
|
+
],
|
|
2514
|
+
"superclasses": [
|
|
2515
|
+
"landmark"
|
|
2516
|
+
]
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"internalRoles": [
|
|
2520
|
+
"kDocPreface"
|
|
2521
|
+
],
|
|
2522
|
+
"name": "doc-preface",
|
|
2523
|
+
"nameFrom": [
|
|
2524
|
+
"author"
|
|
2525
|
+
],
|
|
2526
|
+
"superclasses": [
|
|
2527
|
+
"landmark"
|
|
2528
|
+
]
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"internalRoles": [
|
|
2532
|
+
"kDocPrologue"
|
|
2533
|
+
],
|
|
2534
|
+
"name": "doc-prologue",
|
|
2535
|
+
"nameFrom": [
|
|
2536
|
+
"author"
|
|
2537
|
+
],
|
|
2538
|
+
"superclasses": [
|
|
2539
|
+
"landmark"
|
|
2540
|
+
]
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"internalRoles": [
|
|
2544
|
+
"kDocPullquote"
|
|
2545
|
+
],
|
|
2546
|
+
"name": "doc-pullquote",
|
|
2547
|
+
"nameFrom": [
|
|
2548
|
+
"author"
|
|
2549
|
+
],
|
|
2550
|
+
"superclasses": [
|
|
2551
|
+
"section"
|
|
2552
|
+
]
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
"internalRoles": [
|
|
2556
|
+
"kDocQna"
|
|
2557
|
+
],
|
|
2558
|
+
"name": "doc-qna",
|
|
2559
|
+
"nameFrom": [
|
|
2560
|
+
"author"
|
|
2561
|
+
],
|
|
2562
|
+
"superclasses": [
|
|
2563
|
+
"section"
|
|
2564
|
+
]
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
"internalRoles": [
|
|
2568
|
+
"kDocSubtitle"
|
|
2569
|
+
],
|
|
2570
|
+
"name": "doc-subtitle",
|
|
2571
|
+
"nameFrom": [
|
|
2572
|
+
"contents",
|
|
2573
|
+
"author"
|
|
2574
|
+
],
|
|
2575
|
+
"superclasses": [
|
|
2576
|
+
"sectionhead"
|
|
2577
|
+
]
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
"internalRoles": [
|
|
2581
|
+
"kDocTip"
|
|
2582
|
+
],
|
|
2583
|
+
"name": "doc-tip",
|
|
2584
|
+
"nameFrom": [
|
|
2585
|
+
"author"
|
|
2586
|
+
],
|
|
2587
|
+
"superclasses": [
|
|
2588
|
+
"note"
|
|
2589
|
+
]
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"internalRoles": [
|
|
2593
|
+
"kDocToc"
|
|
2594
|
+
],
|
|
2595
|
+
"name": "doc-toc",
|
|
2596
|
+
"nameFrom": [
|
|
2597
|
+
"author"
|
|
2598
|
+
],
|
|
2599
|
+
"superclasses": [
|
|
2600
|
+
"navigation"
|
|
2601
|
+
]
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"internalRoles": [
|
|
2605
|
+
"kGraphicsDocument"
|
|
2606
|
+
],
|
|
2607
|
+
"name": "graphics-document",
|
|
2608
|
+
"nameFrom": [
|
|
2609
|
+
"author"
|
|
2610
|
+
],
|
|
2611
|
+
"superclasses": [
|
|
2612
|
+
"document"
|
|
2613
|
+
]
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"internalRoles": [
|
|
2617
|
+
"kGraphicsObject"
|
|
2618
|
+
],
|
|
2619
|
+
"name": "graphics-object",
|
|
2620
|
+
"nameFrom": [
|
|
2621
|
+
"contents",
|
|
2622
|
+
"author"
|
|
2623
|
+
],
|
|
2624
|
+
"superclasses": [
|
|
2625
|
+
"group"
|
|
2626
|
+
]
|
|
2627
|
+
},
|
|
2628
|
+
{
|
|
2629
|
+
"internalRoles": [
|
|
2630
|
+
"kGraphicsSymbol"
|
|
2631
|
+
],
|
|
2632
|
+
"name": "graphics-symbol",
|
|
2633
|
+
"nameFrom": [
|
|
2634
|
+
"author"
|
|
2635
|
+
],
|
|
2636
|
+
"superclasses": [
|
|
2637
|
+
"img"
|
|
1511
2638
|
]
|
|
1512
2639
|
}
|
|
1513
2640
|
]
|