chrome-devtools-mcp 0.8.1 → 0.9.0

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