lighthouse 13.2.0 → 13.4.0-dev.20260625

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 (218) hide show
  1. package/.agents/skills/lighthouse-verification/SKILL.md +23 -0
  2. package/cli/cli-flags.d.ts +8 -9
  3. package/cli/cli-flags.js +2 -2
  4. package/cli/test/smokehouse/config/exclusions.js +2 -0
  5. package/cli/test/smokehouse/lighthouse-runners/bundle.js +7 -3
  6. package/cli/test/smokehouse/lighthouse-runners/cli.js +5 -1
  7. package/cli/test/smokehouse/lighthouse-runners/devtools-mcp.js +7 -3
  8. package/cli/test/smokehouse/lighthouse-runners/devtools.js +4 -1
  9. package/cli/test/smokehouse/smokehouse.js +7 -2
  10. package/cli/test/smokehouse/version-check.d.ts +1 -1
  11. package/core/audits/accessibility/accesskeys.js +1 -1
  12. package/core/audits/accessibility/aria-allowed-attr.js +1 -1
  13. package/core/audits/accessibility/aria-allowed-role.js +1 -1
  14. package/core/audits/accessibility/aria-command-name.js +1 -1
  15. package/core/audits/accessibility/aria-conditional-attr.js +1 -1
  16. package/core/audits/accessibility/aria-deprecated-role.js +1 -1
  17. package/core/audits/accessibility/aria-dialog-name.js +1 -1
  18. package/core/audits/accessibility/aria-hidden-body.js +1 -1
  19. package/core/audits/accessibility/aria-hidden-focus.js +1 -1
  20. package/core/audits/accessibility/aria-input-field-name.js +1 -1
  21. package/core/audits/accessibility/aria-meter-name.js +1 -1
  22. package/core/audits/accessibility/aria-progressbar-name.js +1 -1
  23. package/core/audits/accessibility/aria-prohibited-attr.js +1 -1
  24. package/core/audits/accessibility/aria-required-attr.js +1 -1
  25. package/core/audits/accessibility/aria-required-children.js +1 -1
  26. package/core/audits/accessibility/aria-required-parent.js +1 -1
  27. package/core/audits/accessibility/aria-roles.js +1 -1
  28. package/core/audits/accessibility/aria-text.js +1 -1
  29. package/core/audits/accessibility/aria-toggle-field-name.js +1 -1
  30. package/core/audits/accessibility/aria-tooltip-name.js +1 -1
  31. package/core/audits/accessibility/aria-treeitem-name.js +1 -1
  32. package/core/audits/accessibility/aria-valid-attr-value.js +1 -1
  33. package/core/audits/accessibility/aria-valid-attr.js +1 -1
  34. package/core/audits/accessibility/autocomplete-valid.js +1 -1
  35. package/core/audits/accessibility/button-name.js +1 -1
  36. package/core/audits/accessibility/bypass.js +1 -1
  37. package/core/audits/accessibility/color-contrast.js +1 -1
  38. package/core/audits/accessibility/definition-list.js +1 -1
  39. package/core/audits/accessibility/dlitem.js +1 -1
  40. package/core/audits/accessibility/document-title.js +1 -1
  41. package/core/audits/accessibility/duplicate-id-aria.js +1 -1
  42. package/core/audits/accessibility/empty-heading.js +1 -1
  43. package/core/audits/accessibility/form-field-multiple-labels.js +1 -1
  44. package/core/audits/accessibility/frame-title.js +1 -1
  45. package/core/audits/accessibility/heading-order.js +1 -1
  46. package/core/audits/accessibility/html-has-lang.js +1 -1
  47. package/core/audits/accessibility/html-lang-valid.js +1 -1
  48. package/core/audits/accessibility/html-xml-lang-mismatch.js +1 -1
  49. package/core/audits/accessibility/identical-links-same-purpose.js +1 -1
  50. package/core/audits/accessibility/image-alt.js +1 -1
  51. package/core/audits/accessibility/image-redundant-alt.js +1 -1
  52. package/core/audits/accessibility/input-button-name.js +1 -1
  53. package/core/audits/accessibility/input-image-alt.js +1 -1
  54. package/core/audits/accessibility/label-content-name-mismatch.js +1 -1
  55. package/core/audits/accessibility/label.js +1 -1
  56. package/core/audits/accessibility/landmark-one-main.js +1 -1
  57. package/core/audits/accessibility/link-in-text-block.js +1 -1
  58. package/core/audits/accessibility/link-name.js +1 -1
  59. package/core/audits/accessibility/list.js +1 -1
  60. package/core/audits/accessibility/listitem.js +1 -1
  61. package/core/audits/accessibility/meta-refresh.js +1 -1
  62. package/core/audits/accessibility/meta-viewport.js +1 -1
  63. package/core/audits/accessibility/object-alt.js +1 -1
  64. package/core/audits/accessibility/presentation-role-conflict.js +1 -1
  65. package/core/audits/accessibility/select-name.js +1 -1
  66. package/core/audits/accessibility/skip-link.js +1 -1
  67. package/core/audits/accessibility/svg-img-alt.js +1 -1
  68. package/core/audits/accessibility/tabindex.js +1 -1
  69. package/core/audits/accessibility/table-duplicate-name.js +1 -1
  70. package/core/audits/accessibility/table-fake-caption.js +1 -1
  71. package/core/audits/accessibility/target-size.js +1 -1
  72. package/core/audits/accessibility/td-has-header.js +1 -1
  73. package/core/audits/accessibility/td-headers-attr.js +1 -1
  74. package/core/audits/accessibility/th-has-data-cells.js +1 -1
  75. package/core/audits/accessibility/valid-lang.js +1 -1
  76. package/core/audits/accessibility/video-caption.js +1 -1
  77. package/core/audits/agentic/agent-accessibility-tree.js +1 -1
  78. package/core/audits/agentic/llms-txt.d.ts +1 -0
  79. package/core/audits/agentic/llms-txt.js +23 -10
  80. package/core/audits/baseline.js +10 -12
  81. package/core/audits/dobetterweb/geolocation-on-start.js +2 -1
  82. package/core/audits/network-requests.js +2 -0
  83. package/core/audits/seo/canonical.js +19 -7
  84. package/core/audits/seo/robots-txt.d.ts +1 -0
  85. package/core/audits/seo/robots-txt.js +22 -8
  86. package/core/audits/webmcp-form-coverage.js +2 -2
  87. package/core/audits/webmcp-registered-tools.js +1 -1
  88. package/core/audits/webmcp-schema-validity.js +1 -1
  89. package/core/computed/js-bundles.d.ts +1 -1
  90. package/core/computed/load-simulator.d.ts +1 -1
  91. package/core/computed/metrics/first-contentful-paint-all-frames.d.ts +1 -1
  92. package/core/computed/metrics/first-contentful-paint.d.ts +1 -1
  93. package/core/computed/metrics/interactive.d.ts +1 -1
  94. package/core/computed/metrics/lantern-metric.d.ts +6 -6
  95. package/core/computed/metrics/largest-contentful-paint-all-frames.d.ts +1 -1
  96. package/core/computed/metrics/largest-contentful-paint.d.ts +1 -1
  97. package/core/computed/metrics/max-potential-fid.d.ts +1 -1
  98. package/core/computed/metrics/speed-index.d.ts +1 -1
  99. package/core/computed/metrics/time-to-first-byte.d.ts +1 -1
  100. package/core/computed/metrics/total-blocking-time.d.ts +1 -1
  101. package/core/computed/module-duplication.d.ts +1 -1
  102. package/core/computed/page-dependency-graph.d.ts +1 -1
  103. package/core/computed/unused-css.d.ts +1 -1
  104. package/core/config/agentic-browsing-config.d.ts +1 -0
  105. package/core/config/agentic-browsing-config.js +3 -2
  106. package/core/config/config-helpers.d.ts +1 -0
  107. package/core/config/config-helpers.js +1 -1
  108. package/core/config/config-plugin.d.ts +1 -0
  109. package/core/config/config-plugin.js +1 -0
  110. package/core/config/config.d.ts +1 -0
  111. package/core/config/config.js +1 -0
  112. package/core/config/constants.d.ts +1 -0
  113. package/core/config/constants.js +1 -0
  114. package/core/config/default-config.js +45 -0
  115. package/core/config/experimental-config.d.ts +1 -9
  116. package/core/config/experimental-config.js +2 -0
  117. package/core/config/filters.d.ts +1 -0
  118. package/core/config/filters.js +1 -0
  119. package/core/config/full-config.d.ts +1 -5
  120. package/core/config/full-config.js +2 -0
  121. package/core/config/lr-desktop-config.d.ts +1 -0
  122. package/core/config/lr-desktop-config.js +1 -0
  123. package/core/config/lr-mobile-config.d.ts +1 -5
  124. package/core/config/lr-mobile-config.js +2 -0
  125. package/core/config/perf-config.d.ts +1 -5
  126. package/core/config/perf-config.js +2 -0
  127. package/core/config/validation.d.ts +1 -0
  128. package/core/config/validation.js +1 -0
  129. package/core/gather/driver/execution-context.d.ts +23 -0
  130. package/core/gather/driver/execution-context.js +86 -1
  131. package/core/gather/driver/storage.js +13 -0
  132. package/core/gather/driver.d.ts +1 -1
  133. package/core/gather/gatherers/accessibility.js +1 -0
  134. package/core/gather/gatherers/agentic/llms-txt.js +5 -1
  135. package/core/gather/gatherers/seo/robots-txt.js +6 -1
  136. package/core/gather/gatherers/trace-elements.d.ts +4 -1
  137. package/core/gather/gatherers/trace-elements.js +24 -28
  138. package/core/gather/gatherers/webmcp-schema.js +9 -16
  139. package/core/gather/gatherers/webmcp.d.ts +5 -0
  140. package/core/gather/gatherers/webmcp.js +34 -27
  141. package/core/index.d.ts +0 -1
  142. package/core/index.js +0 -1
  143. package/core/lib/baseline/web-features-data.json +1179 -0
  144. package/core/lib/baseline/web-features-metadata.json +1 -1
  145. package/core/lib/deprecations-strings.d.ts +117 -87
  146. package/core/lib/deprecations-strings.js +31 -0
  147. package/core/lib/script-helpers.js +13 -1
  148. package/core/scoring.d.ts +58 -58
  149. package/dist/report/bundle.esm.js +4 -7
  150. package/dist/report/flow.js +6 -9
  151. package/dist/report/standalone.js +20 -12
  152. package/flow-report/types/flow-report.d.ts +2 -2
  153. package/package.json +31 -31
  154. package/report/assets/styles.css +1 -4
  155. package/report/renderer/components.js +1 -1
  156. package/report/renderer/details-renderer.d.ts +6 -1
  157. package/report/renderer/details-renderer.js +11 -3
  158. package/report/renderer/explodey-gauge.js +9 -7
  159. package/report/renderer/i18n-formatter.d.ts +1 -1
  160. package/report/renderer/logger.js +18 -4
  161. package/report/renderer/text-encoding.js +1 -1
  162. package/report/types/html-renderer.d.ts +2 -2
  163. package/shared/localization/locales/ar-XB.json +290 -65
  164. package/shared/localization/locales/ar.json +290 -65
  165. package/shared/localization/locales/bg.json +290 -65
  166. package/shared/localization/locales/ca.json +295 -70
  167. package/shared/localization/locales/cs.json +290 -65
  168. package/shared/localization/locales/da.json +294 -69
  169. package/shared/localization/locales/de.json +295 -70
  170. package/shared/localization/locales/el.json +290 -65
  171. package/shared/localization/locales/en-GB.json +290 -65
  172. package/shared/localization/locales/en-US.json +112 -76
  173. package/shared/localization/locales/en-XA.json +253 -64
  174. package/shared/localization/locales/en-XL.json +112 -76
  175. package/shared/localization/locales/es-419.json +290 -65
  176. package/shared/localization/locales/es.json +298 -73
  177. package/shared/localization/locales/fi.json +290 -65
  178. package/shared/localization/locales/fil.json +290 -65
  179. package/shared/localization/locales/fr.json +294 -69
  180. package/shared/localization/locales/he.json +293 -68
  181. package/shared/localization/locales/hi.json +291 -66
  182. package/shared/localization/locales/hr.json +290 -65
  183. package/shared/localization/locales/hu.json +290 -65
  184. package/shared/localization/locales/id.json +290 -65
  185. package/shared/localization/locales/it.json +294 -69
  186. package/shared/localization/locales/ja.json +290 -65
  187. package/shared/localization/locales/ko.json +290 -65
  188. package/shared/localization/locales/lt.json +290 -65
  189. package/shared/localization/locales/lv.json +290 -65
  190. package/shared/localization/locales/nl.json +290 -65
  191. package/shared/localization/locales/no.json +290 -65
  192. package/shared/localization/locales/pl.json +290 -65
  193. package/shared/localization/locales/pt-PT.json +291 -66
  194. package/shared/localization/locales/pt.json +290 -65
  195. package/shared/localization/locales/ro.json +290 -65
  196. package/shared/localization/locales/ru.json +301 -76
  197. package/shared/localization/locales/sk.json +291 -66
  198. package/shared/localization/locales/sl.json +290 -65
  199. package/shared/localization/locales/sr-Latn.json +290 -65
  200. package/shared/localization/locales/sr.json +290 -65
  201. package/shared/localization/locales/sv.json +297 -72
  202. package/shared/localization/locales/ta.json +291 -66
  203. package/shared/localization/locales/te.json +293 -68
  204. package/shared/localization/locales/th.json +291 -66
  205. package/shared/localization/locales/tr.json +290 -65
  206. package/shared/localization/locales/uk.json +290 -65
  207. package/shared/localization/locales/vi.json +291 -66
  208. package/shared/localization/locales/zh-HK.json +292 -67
  209. package/shared/localization/locales/zh-TW.json +291 -66
  210. package/shared/localization/locales/zh.json +291 -66
  211. package/shared/types/shared.d.ts +1 -1
  212. package/tsconfig-base.json +2 -1
  213. package/tsconfig.json +2 -0
  214. package/types/artifacts.d.ts +1 -1
  215. package/types/internal/rxjs.d.ts +1 -1
  216. package/types/internal/smokehouse.d.ts +8 -2
  217. package/types.d.ts +2 -0
  218. package/types.js +11 -0
@@ -0,0 +1,1179 @@
1
+ {
2
+ "high": {
3
+ "a": "2015-07-29",
4
+ "abbr": "2015-07-29",
5
+ "abortable-fetch": "2019-03-25",
6
+ "aborting": "2019-03-25",
7
+ "absolute-positioning": "2015-07-29",
8
+ "accesskey": "2015-07-29",
9
+ "address": "2015-07-29",
10
+ "alerts": "2015-07-29",
11
+ "all": "2020-01-15",
12
+ "angle-instanced-arrays": "2016-06-07",
13
+ "animation-composition": "2023-07-04",
14
+ "animations-css": "2015-09-30",
15
+ "appearance": "2022-03-14",
16
+ "aria-attribute-reflection": "2023-10-24",
17
+ "array": "2015-07-29",
18
+ "array-at": "2022-03-14",
19
+ "array-by-copy": "2023-07-04",
20
+ "array-copywithin": "2016-09-20",
21
+ "array-fill": "2016-09-20",
22
+ "array-find": "2016-09-20",
23
+ "array-findlast": "2022-08-23",
24
+ "array-flat": "2020-01-15",
25
+ "array-from": "2016-09-20",
26
+ "array-includes": "2016-09-20",
27
+ "array-isarray": "2015-07-29",
28
+ "array-iteration-methods": "2015-07-29",
29
+ "array-iterators": "2018-05-09",
30
+ "array-of": "2016-09-20",
31
+ "array-splice": "2015-07-29",
32
+ "article": "2015-07-29",
33
+ "aside": "2015-07-29",
34
+ "aspect-ratio": "2021-09-20",
35
+ "async-await": "2017-04-05",
36
+ "async-generators": "2020-01-15",
37
+ "async-iterators": "2020-01-15",
38
+ "attr-contents": "2015-07-29",
39
+ "audio": "2015-07-29",
40
+ "audio-worklet": "2021-04-26",
41
+ "autofocus": "2015-07-29",
42
+ "autonomous-custom-elements": "2020-01-15",
43
+ "b": "2015-07-29",
44
+ "backdrop": "2022-03-14",
45
+ "background": "2015-07-29",
46
+ "background-blend-mode": "2020-01-15",
47
+ "background-clip": "2015-07-29",
48
+ "background-color": "2015-07-29",
49
+ "background-image": "2015-07-29",
50
+ "background-origin": "2015-07-29",
51
+ "background-position": "2015-07-29",
52
+ "background-repeat": "2016-09-20",
53
+ "background-size": "2015-07-29",
54
+ "barprop": "2015-07-29",
55
+ "base": "2015-07-29",
56
+ "base64encodedecode": "2016-09-20",
57
+ "bdi": "2020-01-15",
58
+ "bdo": "2015-07-29",
59
+ "beacons": "2018-04-12",
60
+ "before-after": "2015-07-29",
61
+ "bigint": "2020-09-16",
62
+ "bigint64array": "2021-09-20",
63
+ "blockquote": "2015-07-29",
64
+ "bmp": "2015-07-29",
65
+ "body": "2015-07-29",
66
+ "border-image": "2017-02-01",
67
+ "border-radius": "2015-07-29",
68
+ "borders": "2015-07-29",
69
+ "box-shadow": "2015-07-29",
70
+ "box-sizing": "2015-07-29",
71
+ "br": "2015-07-29",
72
+ "broadcast-channel": "2022-03-14",
73
+ "brotli": "2017-09-19",
74
+ "button": "2015-07-29",
75
+ "calc": "2015-07-29",
76
+ "calc-constants": "2023-06-06",
77
+ "canvas": "2015-07-29",
78
+ "canvas-2d": "2015-07-29",
79
+ "canvas-createconicgradient": "2023-04-11",
80
+ "canvas-reset": "2023-12-11",
81
+ "canvas-roundrect": "2023-04-11",
82
+ "cap": "2023-12-11",
83
+ "capture-stream-canvas": "2020-01-15",
84
+ "caret-color": "2020-01-15",
85
+ "cascade-layers": "2022-03-14",
86
+ "case-insensitive-attributes": "2020-01-15",
87
+ "ch": "2015-07-29",
88
+ "change-event": "2015-07-29",
89
+ "channel-messaging": "2015-09-22",
90
+ "charset": "2015-07-29",
91
+ "cite": "2015-07-29",
92
+ "class-syntax": "2016-03-08",
93
+ "clip-path": "2021-01-21",
94
+ "clip-path-animatable": "2020-01-15",
95
+ "clip-path-boxes": "2023-11-02",
96
+ "clipboard-events": "2017-03-27",
97
+ "code": "2015-07-29",
98
+ "color": "2015-07-29",
99
+ "color-function": "2023-05-09",
100
+ "color-gamut": "2023-02-14",
101
+ "color-mix": "2023-05-09",
102
+ "color-scheme": "2022-02-03",
103
+ "colrv0": "2020-01-15",
104
+ "column-fill": "2017-03-07",
105
+ "column-span": "2020-07-28",
106
+ "composition-events": "2017-04-19",
107
+ "compression-streams": "2023-05-09",
108
+ "conic-gradients": "2020-11-17",
109
+ "console": "2015-07-29",
110
+ "constraint-validation": "2018-12-11",
111
+ "constructed-stylesheets": "2023-03-27",
112
+ "contain": "2022-03-14",
113
+ "contain-inline-size": "2022-09-12",
114
+ "contain-intrinsic-size": "2023-09-18",
115
+ "contain-layout": "2022-03-14",
116
+ "contain-paint": "2022-03-14",
117
+ "contain-size": "2022-03-14",
118
+ "contain-style": "2022-07-26",
119
+ "container-queries": "2023-02-14",
120
+ "content": "2015-07-29",
121
+ "contenteditable": "2015-07-29",
122
+ "cookies": "2015-07-29",
123
+ "cors": "2015-07-29",
124
+ "counter-set": "2023-12-11",
125
+ "counter-style": "2023-09-18",
126
+ "counters": "2015-07-29",
127
+ "createimagebitmap": "2023-12-11",
128
+ "credential-management": "2020-01-15",
129
+ "csp": "2016-08-02",
130
+ "css-escape": "2020-01-15",
131
+ "css-object-model": "2015-09-30",
132
+ "css-supports": "2020-01-15",
133
+ "cubic-bezier-easing": "2015-07-29",
134
+ "currentcolor": "2015-07-29",
135
+ "custom-properties": "2017-04-05",
136
+ "data": "2017-10-24",
137
+ "data-urls": "2015-07-29",
138
+ "dataset": "2015-07-29",
139
+ "date": "2015-07-29",
140
+ "dedicated-workers": "2015-07-29",
141
+ "default": "2020-01-15",
142
+ "del": "2015-07-29",
143
+ "description-list": "2015-07-29",
144
+ "destructuring": "2020-01-15",
145
+ "details": "2020-01-15",
146
+ "device-orientation-events": "2023-09-18",
147
+ "dfn": "2015-07-29",
148
+ "dialog": "2022-03-14",
149
+ "dir-pseudo": "2023-12-07",
150
+ "dirname": "2023-08-01",
151
+ "display": "2015-07-29",
152
+ "display-flow-root": "2020-01-15",
153
+ "display-list-item": "2015-07-29",
154
+ "display-table": "2015-07-29",
155
+ "div": "2015-07-29",
156
+ "dom": "2015-07-29",
157
+ "dom-geometry": "2020-01-15",
158
+ "dominant-baseline": "2020-01-15",
159
+ "domparser": "2016-03-21",
160
+ "download": "2019-09-19",
161
+ "draganddrop": "2015-07-29",
162
+ "dynamic-range": "2022-05-03",
163
+ "element-from-point": "2020-01-15",
164
+ "em": "2015-07-29",
165
+ "em-unit": "2015-07-29",
166
+ "embed": "2020-01-15",
167
+ "empty": "2015-07-29",
168
+ "encrypted-media-extensions": "2019-03-25",
169
+ "enterkeyhint": "2021-11-02",
170
+ "error-cause": "2021-09-20",
171
+ "events": "2015-07-29",
172
+ "ex": "2015-07-29",
173
+ "exp-functions": "2023-12-07",
174
+ "exponentiation": "2017-03-27",
175
+ "ext-blend-minmax": "2018-04-30",
176
+ "ext-color-buffer-float": "2021-09-20",
177
+ "ext-color-buffer-half-float": "2020-09-16",
178
+ "ext-srgb": "2020-02-07",
179
+ "ext-texture-filter-anisotropic": "2016-06-07",
180
+ "fetch": "2017-03-27",
181
+ "fieldset": "2015-07-29",
182
+ "figure": "2015-07-29",
183
+ "file": "2020-01-15",
184
+ "file-selector-button": "2021-04-26",
185
+ "filter": "2016-09-07",
186
+ "first-letter": "2015-07-29",
187
+ "first-line": "2015-07-29",
188
+ "fit-content": "2021-11-02",
189
+ "fixed-positioning": "2015-07-29",
190
+ "flexbox": "2015-09-30",
191
+ "flexbox-gap": "2021-04-26",
192
+ "float-clear": "2015-07-29",
193
+ "focus-events": "2015-07-29",
194
+ "focus-visible": "2022-03-14",
195
+ "focus-within": "2020-01-15",
196
+ "font-display": "2020-01-15",
197
+ "font-face": "2016-09-20",
198
+ "font-family": "2015-07-29",
199
+ "font-family-system": "2021-09-07",
200
+ "font-feature-settings": "2017-04-05",
201
+ "font-kerning": "2020-01-15",
202
+ "font-loading": "2020-01-15",
203
+ "font-optical-sizing": "2020-03-24",
204
+ "font-palette": "2022-11-15",
205
+ "font-shorthand": "2015-07-29",
206
+ "font-size": "2015-07-29",
207
+ "font-stretch": "2020-01-15",
208
+ "font-style": "2015-07-29",
209
+ "font-synthesis": "2022-01-06",
210
+ "font-synthesis-small-caps": "2023-03-27",
211
+ "font-synthesis-style": "2023-03-27",
212
+ "font-synthesis-weight": "2023-03-27",
213
+ "font-variant": "2015-07-29",
214
+ "font-variant-alternates": "2023-03-13",
215
+ "font-variant-caps": "2020-01-15",
216
+ "font-variant-east-asian": "2020-01-15",
217
+ "font-variant-ligatures": "2020-01-15",
218
+ "font-variant-numeric": "2020-01-15",
219
+ "font-variation-settings": "2018-09-05",
220
+ "font-weight": "2015-07-29",
221
+ "forced-colors": "2022-09-12",
222
+ "form": "2015-07-29",
223
+ "form-associated-custom-elements": "2023-03-27",
224
+ "form-validity-pseudos": "2015-07-29",
225
+ "functions": "2015-07-29",
226
+ "gamepad": "2017-03-27",
227
+ "generators": "2016-09-20",
228
+ "geolocation": "2015-07-29",
229
+ "get-computed-style": "2015-07-29",
230
+ "gif": "2015-07-29",
231
+ "globalthis": "2020-01-15",
232
+ "gradients": "2015-07-29",
233
+ "grid": "2017-10-17",
234
+ "grid-animation": "2022-10-27",
235
+ "hardware-concurrency": "2022-03-14",
236
+ "hashbang-comments": "2020-03-24",
237
+ "hashchange": "2015-07-29",
238
+ "head": "2015-07-29",
239
+ "header-footer": "2015-07-29",
240
+ "headings": "2015-07-29",
241
+ "hgroup": "2015-07-29",
242
+ "history": "2015-07-29",
243
+ "host": "2020-01-15",
244
+ "hr": "2015-07-29",
245
+ "hsl": "2020-01-15",
246
+ "hsts": "2015-07-29",
247
+ "html": "2015-07-29",
248
+ "http-authentication": "2015-07-29",
249
+ "http11": "2015-07-29",
250
+ "http2": "2015-09-30",
251
+ "hwb": "2022-04-28",
252
+ "hyphenate-character": "2023-09-18",
253
+ "hyphens": "2023-09-18",
254
+ "i": "2015-07-29",
255
+ "ic": "2022-10-03",
256
+ "iframe": "2015-07-29",
257
+ "iframe-sandbox": "2015-07-29",
258
+ "iframe-srcdoc": "2020-01-15",
259
+ "image-maps": "2015-07-29",
260
+ "image-orientation": "2020-04-13",
261
+ "image-rendering": "2021-10-05",
262
+ "image-set": "2023-09-18",
263
+ "imagebitmaprenderingcontext": "2020-01-15",
264
+ "img": "2015-07-29",
265
+ "import": "2015-07-29",
266
+ "import-maps": "2023-03-27",
267
+ "indeterminate": "2020-01-15",
268
+ "indexeddb": "2021-09-20",
269
+ "individual-transforms": "2022-08-05",
270
+ "inert": "2023-04-11",
271
+ "inherit-value": "2015-07-29",
272
+ "initial-value": "2015-11-12",
273
+ "input": "2015-07-29",
274
+ "input-button": "2015-07-29",
275
+ "input-checkbox": "2015-07-29",
276
+ "input-date-time": "2021-04-26",
277
+ "input-email-tel-url": "2015-07-29",
278
+ "input-event": "2020-01-15",
279
+ "input-file": "2015-07-29",
280
+ "input-file-multiple": "2015-07-29",
281
+ "input-hidden": "2015-07-29",
282
+ "input-image": "2015-07-29",
283
+ "input-number": "2015-07-29",
284
+ "input-password": "2015-07-29",
285
+ "input-radio": "2015-07-29",
286
+ "input-range": "2017-03-16",
287
+ "input-reset": "2015-07-29",
288
+ "input-selectors": "2015-07-29",
289
+ "input-submit": "2015-07-29",
290
+ "inputmode": "2021-12-07",
291
+ "ins": "2015-07-29",
292
+ "interaction": "2018-12-11",
293
+ "intersection-observer": "2019-03-25",
294
+ "intl": "2017-09-28",
295
+ "intl-display-names": "2021-04-26",
296
+ "intl-list-format": "2021-04-26",
297
+ "intl-locale": "2020-09-16",
298
+ "intl-plural-rules": "2019-09-19",
299
+ "intl-relative-time-format": "2020-09-16",
300
+ "is": "2021-01-21",
301
+ "is-secure-context": "2018-04-12",
302
+ "isolation": "2020-01-15",
303
+ "iterators": "2015-07-29",
304
+ "javascript": "2015-07-29",
305
+ "jpeg": "2015-07-29",
306
+ "js-modules": "2018-05-09",
307
+ "js-modules-workers": "2023-06-06",
308
+ "json": "2015-07-29",
309
+ "kbd": "2015-07-29",
310
+ "keyboard-events": "2015-07-29",
311
+ "lab": "2023-05-09",
312
+ "label": "2015-07-29",
313
+ "lang": "2015-07-29",
314
+ "lang-attr": "2015-07-29",
315
+ "language": "2015-07-29",
316
+ "layout-direction-override": "2020-01-15",
317
+ "let-const": "2016-09-20",
318
+ "letter-spacing": "2015-07-29",
319
+ "lh": "2023-11-21",
320
+ "line-break": "2020-07-28",
321
+ "line-height": "2015-07-29",
322
+ "linear-easing": "2023-12-11",
323
+ "link": "2015-07-29",
324
+ "link-rel-preconnect": "2020-01-15",
325
+ "link-rel-preload": "2021-01-26",
326
+ "link-selectors": "2020-01-15",
327
+ "list-elements": "2015-07-29",
328
+ "list-style": "2015-07-29",
329
+ "localstorage": "2015-07-29",
330
+ "location": "2015-07-29",
331
+ "logical-assignments": "2020-09-16",
332
+ "logical-properties": "2021-09-20",
333
+ "main": "2015-07-29",
334
+ "map": "2015-07-29",
335
+ "margin": "2015-07-29",
336
+ "mark": "2015-07-29",
337
+ "mask-type": "2020-01-15",
338
+ "masks": "2023-12-07",
339
+ "matchmedia": "2015-07-29",
340
+ "mathml": "2023-01-12",
341
+ "media-capabilities": "2022-04-28",
342
+ "media-capture": "2017-09-19",
343
+ "media-playback-quality": "2020-02-04",
344
+ "media-queries": "2015-07-29",
345
+ "media-query-range-syntax": "2023-03-27",
346
+ "mediastream-recording": "2021-04-26",
347
+ "menu": "2015-07-29",
348
+ "messageerror": "2023-03-27",
349
+ "meta": "2015-07-29",
350
+ "meta-refresh": "2015-07-29",
351
+ "meter": "2018-10-02",
352
+ "min-max-clamp": "2020-07-28",
353
+ "min-max-content": "2020-01-15",
354
+ "min-max-width-height": "2015-07-29",
355
+ "mix-blend-mode": "2020-01-15",
356
+ "mixed-content": "2020-01-15",
357
+ "modal": "2022-09-02",
358
+ "modulepreload": "2023-09-18",
359
+ "motion-path": "2022-09-12",
360
+ "mouse-events": "2015-07-29",
361
+ "multi-column": "2017-03-07",
362
+ "mutationobserver": "2015-07-29",
363
+ "named-color": "2015-07-29",
364
+ "namespace": "2015-07-29",
365
+ "nav": "2015-07-29",
366
+ "navigation-timing": "2021-10-25",
367
+ "navigator": "2015-07-29",
368
+ "nesting": "2023-12-11",
369
+ "not": "2021-01-21",
370
+ "notifications-apps": "2023-03-27",
371
+ "nth-child": "2015-07-29",
372
+ "nth-child-of": "2023-05-09",
373
+ "nth-of-type": "2015-07-29",
374
+ "nullish-coalescing": "2020-09-16",
375
+ "number": "2015-07-29",
376
+ "numeric-separators": "2020-07-28",
377
+ "object": "2015-07-29",
378
+ "object-fit": "2020-01-15",
379
+ "object-hasown": "2022-03-14",
380
+ "object-object": "2015-07-29",
381
+ "object-position": "2020-01-15",
382
+ "oes-element-index-uint": "2015-07-29",
383
+ "oes-fbo-render-mipmap": "2021-04-26",
384
+ "oes-standard-derivatives": "2015-07-29",
385
+ "oes-texture-float": "2015-07-29",
386
+ "oes-texture-float-linear": "2015-07-29",
387
+ "oes-texture-half-float": "2016-08-02",
388
+ "oes-vertex-array-object": "2018-04-30",
389
+ "offline-audio-context": "2021-04-26",
390
+ "offscreen-canvas": "2023-03-27",
391
+ "oklab": "2023-05-09",
392
+ "online": "2015-07-29",
393
+ "opacity": "2015-07-29",
394
+ "opacity-svg": "≤2020-03-24",
395
+ "optional-catch-binding": "2020-01-15",
396
+ "origin-private-file-system": "2023-03-27",
397
+ "outline": "2023-03-27",
398
+ "outlines": "2017-04-05",
399
+ "output": "≤2018-10-02",
400
+ "overflow": "2023-09-18",
401
+ "overflow-clip": "2022-09-12",
402
+ "overflow-shorthand": "2020-03-24",
403
+ "overflow-wrap": "2018-10-02",
404
+ "p": "2015-07-29",
405
+ "padding": "2015-07-29",
406
+ "page-breaks": "2019-01-29",
407
+ "page-transition-events": "2015-07-29",
408
+ "page-visibility": "2015-07-29",
409
+ "paint-timing": "2021-04-26",
410
+ "pdf-viewer": "2023-03-27",
411
+ "performance": "2015-09-16",
412
+ "permissions": "2022-09-12",
413
+ "physical-properties": "2015-07-29",
414
+ "picture": "2016-03-21",
415
+ "placeholder": "2020-01-15",
416
+ "placeholder-shown": "2020-01-15",
417
+ "png": "2020-01-15",
418
+ "pointer-events": "2015-07-29",
419
+ "pointer-events-api": "2020-07-28",
420
+ "position": "2015-07-29",
421
+ "postmessage": "2015-07-29",
422
+ "pre": "2015-07-29",
423
+ "prefers-color-scheme": "2020-01-15",
424
+ "prefers-contrast": "2022-05-31",
425
+ "prefers-reduced-motion": "2020-01-15",
426
+ "preloading-responsive-images": "2023-12-11",
427
+ "preserves-pitch": "2023-12-11",
428
+ "print": "2023-06-06",
429
+ "print-events": "2019-09-19",
430
+ "progress": "2015-07-29",
431
+ "promise": "2015-07-29",
432
+ "promise-allsettled": "2020-07-28",
433
+ "promise-any": "2020-09-16",
434
+ "promise-finally": "2018-10-02",
435
+ "proxy-reflect": "2016-09-20",
436
+ "push": "2023-03-27",
437
+ "q": "2015-07-29",
438
+ "q-unit": "2020-03-24",
439
+ "queuemicrotask": "2020-07-28",
440
+ "quotes": "2021-04-26",
441
+ "read-write-pseudos": "2020-07-28",
442
+ "referrer-policy": "2021-09-20",
443
+ "regexp": "2015-07-29",
444
+ "relative-positioning": "2015-07-29",
445
+ "rem": "2015-07-29",
446
+ "request-animation-frame": "2015-07-29",
447
+ "request-animation-frame-workers": "2023-03-27",
448
+ "resize-observer": "2020-07-28",
449
+ "resolution": "2022-09-12",
450
+ "resolution-compat": "2018-10-23",
451
+ "resource-size": "2023-03-27",
452
+ "resource-timing": "2017-09-19",
453
+ "revert-value": "2020-07-27",
454
+ "rgb": "2020-01-15",
455
+ "rlh": "2023-11-21",
456
+ "root": "2015-07-29",
457
+ "ruby": "2015-07-29",
458
+ "s": "2015-07-29",
459
+ "safe-area-inset": "2020-01-15",
460
+ "samp": "2015-07-29",
461
+ "scope-pseudo": "2020-01-15",
462
+ "screen": "2015-07-29",
463
+ "screen-orientation": "2023-03-27",
464
+ "script": "2015-07-29",
465
+ "scripting": "2023-12-07",
466
+ "scroll-behavior": "2022-03-14",
467
+ "scroll-elements": "2020-09-16",
468
+ "scroll-into-view": "2020-01-15",
469
+ "scroll-snap": "2020-01-15",
470
+ "search": "2023-10-13",
471
+ "search-input-type": "2015-07-29",
472
+ "section": "2015-07-29",
473
+ "select": "2015-07-29",
474
+ "selection-api": "2017-03-07",
475
+ "selectors": "2015-07-29",
476
+ "server-sent-events": "2020-01-15",
477
+ "server-timing": "2023-03-27",
478
+ "service-workers": "2018-04-30",
479
+ "set": "2015-07-29",
480
+ "setinterval": "2015-07-29",
481
+ "settimeout": "2015-07-29",
482
+ "shadow-dom": "2020-01-15",
483
+ "shadow-parts": "2020-07-28",
484
+ "shape-outside": "2020-01-15",
485
+ "shapes": "2020-01-15",
486
+ "shared-memory": "2021-12-13",
487
+ "slot": "2020-01-15",
488
+ "slot-assign": "2023-03-27",
489
+ "small": "2015-07-29",
490
+ "smil-svg-animations": "2020-01-15",
491
+ "source": "2015-07-29",
492
+ "sourcemap-header": "2020-01-15",
493
+ "span": "2015-07-29",
494
+ "speech-synthesis": "2018-09-05",
495
+ "spellcheck": "2017-11-28",
496
+ "spread": "2020-01-15",
497
+ "srcset": "2017-03-27",
498
+ "stable-array-sort": "2020-01-15",
499
+ "static-positioning": "2015-07-29",
500
+ "steps-easing": "2020-09-16",
501
+ "sticky-positioning": "2019-09-19",
502
+ "storage-access": "2023-12-05",
503
+ "storage-manager": "2023-09-18",
504
+ "streams": "2022-06-28",
505
+ "string-at": "2022-03-14",
506
+ "string-codepoint": "2015-09-30",
507
+ "string-includes": "2015-09-30",
508
+ "string-matchall": "2020-01-15",
509
+ "string-normalize": "2016-09-20",
510
+ "string-pad": "2017-04-05",
511
+ "string-raw": "2015-09-30",
512
+ "string-repeat": "2015-09-30",
513
+ "string-replaceall": "2020-08-27",
514
+ "string-startsends-with": "2015-09-30",
515
+ "string-trim-startend": "2020-01-15",
516
+ "string-wellformed": "2023-10-24",
517
+ "strings": "2015-07-29",
518
+ "strong": "2015-07-29",
519
+ "structured-clone": "2022-03-14",
520
+ "style": "2015-07-29",
521
+ "style-attr": "2015-07-29",
522
+ "sub-sup": "2015-07-29",
523
+ "subgrid": "2023-09-15",
524
+ "subresource-integrity": "2018-04-30",
525
+ "supports": "2015-09-30",
526
+ "supports-compat": "2016-09-20",
527
+ "svg": "2020-01-15",
528
+ "svg-filters": "2015-07-29",
529
+ "symbol": "2015-09-30",
530
+ "system-color": "2015-07-29",
531
+ "tab-size": "2021-08-10",
532
+ "tabindex": "2018-10-02",
533
+ "table": "2015-07-29",
534
+ "target": "2015-07-29",
535
+ "template": "2015-11-12",
536
+ "template-literals": "2020-01-15",
537
+ "text-align": "2015-07-29",
538
+ "text-align-last": "2022-09-12",
539
+ "text-combine-upright": "2022-03-14",
540
+ "text-decoration": "2015-07-29",
541
+ "text-decoration-skip-ink": "2022-03-14",
542
+ "text-emphasis": "2022-03-03",
543
+ "text-encoding": "2020-01-15",
544
+ "text-indent": "2015-07-29",
545
+ "text-orientation": "2020-09-16",
546
+ "text-overflow": "2015-07-29",
547
+ "text-shadow": "2015-07-29",
548
+ "text-stroke-fill": "2017-04-05",
549
+ "text-tracks": "2015-07-29",
550
+ "text-transform": "2015-07-29",
551
+ "text-underline-offset": "2020-11-19",
552
+ "text-underline-position": "2020-07-28",
553
+ "textarea": "2015-07-29",
554
+ "time": "2017-10-24",
555
+ "title": "2015-07-29",
556
+ "title-attr": "2015-07-29",
557
+ "touch-action": "2019-09-19",
558
+ "transforms2d": "2015-09-30",
559
+ "transforms3d": "2022-03-14",
560
+ "transitions": "2015-09-30",
561
+ "translate": "2023-03-14",
562
+ "trig-functions": "2023-03-13",
563
+ "two-value-display": "2023-07-21",
564
+ "typed-array-iteration-methods": "2016-09-20",
565
+ "typed-array-iterators": "2016-09-20",
566
+ "typed-arrays": "2015-07-29",
567
+ "u": "2015-07-29",
568
+ "unicode-point-escapes": "2015-09-30",
569
+ "unset-value": "2016-03-21",
570
+ "update": "2023-09-18",
571
+ "upgrade-insecure-requests": "2018-04-30",
572
+ "url": "2015-07-29",
573
+ "url-canparse": "2023-12-07",
574
+ "user-action-pseudos": "2015-07-29",
575
+ "user-activation": "2023-11-21",
576
+ "user-agent-sniffing": "2016-09-20",
577
+ "user-pseudos": "2023-11-02",
578
+ "var": "2015-07-29",
579
+ "vertical-align": "2015-07-29",
580
+ "video": "2015-07-29",
581
+ "viewport-unit-variants": "2022-12-05",
582
+ "viewport-units": "2017-10-17",
583
+ "visibility": "2015-07-29",
584
+ "visual-viewport": "2021-08-10",
585
+ "wasm": "2017-10-17",
586
+ "wasm-bigint": "2021-04-26",
587
+ "wasm-bulk-memory": "2021-10-25",
588
+ "wasm-exception-handling": "2022-05-03",
589
+ "wasm-multi-value": "2020-10-20",
590
+ "wasm-mutable-globals": "2020-03-24",
591
+ "wasm-non-trapping-float-to-int": "2021-10-25",
592
+ "wasm-reference-types": "2021-11-19",
593
+ "wasm-sign-extension-operators": "2021-04-26",
594
+ "wasm-simd": "2023-03-27",
595
+ "wasm-threads": "2021-12-13",
596
+ "wbr": "2015-07-29",
597
+ "weak-references": "2021-04-26",
598
+ "weakmap": "2015-07-29",
599
+ "weakset": "2015-09-30",
600
+ "web-animations": "2020-09-16",
601
+ "web-audio": "2021-04-26",
602
+ "web-cryptography": "2015-07-29",
603
+ "web-locks": "2022-03-14",
604
+ "webauthn": "2021-09-07",
605
+ "webauthn-public-key-easy": "2023-10-24",
606
+ "webgl": "2015-07-29",
607
+ "webgl-color-buffer-float": "2021-09-20",
608
+ "webgl-compressed-texture-astc": "2020-01-15",
609
+ "webgl-compressed-texture-etc": "2020-03-24",
610
+ "webgl-compressed-texture-etc1": "2020-03-24",
611
+ "webgl-debug-renderer-info": "2017-04-19",
612
+ "webgl-debug-shaders": "2020-09-16",
613
+ "webgl-depth-texture": "2015-07-29",
614
+ "webgl-lose-context": "2018-04-30",
615
+ "webgl-oes-draw-buffers-indexed": "2022-12-13",
616
+ "webgl2": "2021-09-20",
617
+ "webp": "2020-09-16",
618
+ "webrtc": "2020-01-15",
619
+ "webrtc-sctp": "2023-05-09",
620
+ "webrtc-stats": "2020-01-15",
621
+ "websockets": "2015-07-29",
622
+ "webvtt": "2015-07-29",
623
+ "webvtt-cue-settings": "2020-01-15",
624
+ "where": "2021-01-21",
625
+ "white-space": "2015-07-29",
626
+ "width-height": "2015-07-29",
627
+ "will-change": "2020-01-15",
628
+ "window": "2015-07-29",
629
+ "word-break": "2015-09-30",
630
+ "word-spacing": "2015-07-29",
631
+ "writing-mode": "2017-03-27",
632
+ "xhr": "2015-07-29",
633
+ "xml-serializer": "2015-07-29",
634
+ "xpath": "2015-07-29",
635
+ "xslt": "2015-07-29",
636
+ "z-index": "2015-07-29"
637
+ },
638
+ "low": {
639
+ "abortsignal-any": "2024-03-19",
640
+ "abortsignal-timeout": "2024-04-18",
641
+ "abs-sign": "2025-06-26",
642
+ "active-view-transition": "2026-01-13",
643
+ "align-content-block": "2024-04-16",
644
+ "alt-text-generated-content": "2024-07-09",
645
+ "array-fromasync": "2024-01-25",
646
+ "array-group": "2024-03-05",
647
+ "async-clipboard": "2024-06-11",
648
+ "atomics-pause": "2025-04-01",
649
+ "atomics-wait-async": "2025-11-11",
650
+ "avif": "2024-01-25",
651
+ "backdrop-filter": "2024-09-16",
652
+ "baseline-shift": "2026-03-24",
653
+ "canvas-2d-willreadfrequently": "2024-09-16",
654
+ "check-visibility": "2024-03-05",
655
+ "clipboard-supports": "2025-03-31",
656
+ "composed-ranges": "2025-08-19",
657
+ "container-style-queries": "2026-05-19",
658
+ "content-visibility": "2025-09-15",
659
+ "contenteditable-plaintextonly": "2025-03-04",
660
+ "contrast-color": "2026-04-10",
661
+ "cookie-enabled": "2024-09-16",
662
+ "crisp-edges": "2026-05-07",
663
+ "declarative-shadow-dom": "2024-02-20",
664
+ "details-content": "2025-09-16",
665
+ "details-name": "2024-09-03",
666
+ "document-caretpositionfrompoint": "2025-12-12",
667
+ "event-timing": "2025-12-12",
668
+ "fetch-priority": "2024-10-29",
669
+ "float16array": "2025-04-04",
670
+ "font-family-math": "2026-03-24",
671
+ "font-size-adjust": "2024-07-25",
672
+ "gethtml": "2024-09-16",
673
+ "getorinsert": "2026-02-14",
674
+ "gradient-interpolation": "2024-06-11",
675
+ "has": "2023-12-19",
676
+ "highlight": "2026-03-24",
677
+ "http3": "2024-09-16",
678
+ "input-file-webkitdirectory": "2025-08-19",
679
+ "intl-duration-format": "2025-03-04",
680
+ "intl-segmenter": "2024-04-16",
681
+ "invoker-commands": "2025-12-12",
682
+ "iterator-concat": "2026-03-24",
683
+ "iterator-methods": "2025-03-31",
684
+ "js-modules-service-workers": "2026-01-13",
685
+ "js-modules-shared-workers": "2026-05-05",
686
+ "json-modules": "2025-04-29",
687
+ "json-raw": "2025-03-31",
688
+ "largest-contentful-paint": "2025-12-12",
689
+ "light-dark": "2024-05-13",
690
+ "link-rel-dns-prefetch": "2025-09-15",
691
+ "loading-lazy": "2023-12-19",
692
+ "math-sum-precise": "2026-04-10",
693
+ "navigation": "2026-01-13",
694
+ "open-pseudo": "2026-05-11",
695
+ "page-setup": "2024-12-11",
696
+ "paint-order": "2024-03-22",
697
+ "parse-html-unsafe": "2025-09-15",
698
+ "popover": "2025-01-27",
699
+ "print-color-adjust": "2025-05-01",
700
+ "promise-try": "2025-01-07",
701
+ "promise-withresolvers": "2024-03-05",
702
+ "rcap": "2026-01-13",
703
+ "rch": "2026-01-13",
704
+ "readable-byte-streams": "2026-03-24",
705
+ "rect-xywh": "2024-01-23",
706
+ "regexp-escape": "2025-05-01",
707
+ "registered-custom-properties": "2024-07-09",
708
+ "relative-color": "2024-09-16",
709
+ "reporting": "2026-03-24",
710
+ "reporting-csp-violations": "2026-03-24",
711
+ "request-video-frame-callback": "2024-10-29",
712
+ "requestclose": "2025-05-27",
713
+ "resizable-buffers": "2024-07-09",
714
+ "rex": "2026-01-13",
715
+ "ric": "2026-01-13",
716
+ "round-mod-rem": "2024-05-17",
717
+ "ruby-align": "2024-12-11",
718
+ "ruby-position": "2024-12-11",
719
+ "scope": "2025-12-12",
720
+ "screen-wake-lock": "2025-03-31",
721
+ "scroll-to-text-fragment": "2024-10-01",
722
+ "scrollbar-color": "2025-12-12",
723
+ "scrollbar-gutter": "2024-12-11",
724
+ "scrollbar-width": "2024-12-11",
725
+ "scrollend": "2025-12-12",
726
+ "set-methods": "2024-06-11",
727
+ "shape-function": "2026-02-24",
728
+ "shared-workers": "2026-05-05",
729
+ "starting-style": "2024-08-06",
730
+ "state": "2024-05-17",
731
+ "target-text": "2024-12-11",
732
+ "text-decoration-skip-ink-all": "2026-05-07",
733
+ "text-decoration-spelling-grammar": "2025-12-12",
734
+ "text-indent-each-line": "2026-03-13",
735
+ "text-indent-hanging": "2026-03-13",
736
+ "text-wrap": "2024-10-17",
737
+ "text-wrap-balance": "2024-05-13",
738
+ "toggleevent-source": "2026-05-11",
739
+ "transferable-arraybuffer": "2024-03-05",
740
+ "transform-box": "2024-04-16",
741
+ "transition-behavior": "2024-08-06",
742
+ "trusted-types": "2026-02-24",
743
+ "uint8array-base64-hex": "2025-09-05",
744
+ "urlpattern": "2025-09-15",
745
+ "vertical-form-controls": "2024-04-18",
746
+ "view-transition-class": "2025-10-14",
747
+ "view-transitions": "2025-10-14",
748
+ "wasm-branch-hinting": "2026-02-24",
749
+ "wasm-extended-constant-expressions": "2024-03-05",
750
+ "wasm-garbage-collection": "2024-12-11",
751
+ "wasm-tail-call-optimization": "2024-12-11",
752
+ "wasm-typed-fun-refs": "2024-09-16",
753
+ "webgl-color-management": "2024-10-29",
754
+ "webgl2-color-management": "2024-10-29",
755
+ "webrtc-encoded-transform": "2025-10-03",
756
+ "webtransport": "2026-03-24",
757
+ "white-space-collapse": "2024-03-19",
758
+ "zoom": "2024-05-14",
759
+ "zstd": "2026-02-11"
760
+ },
761
+ "limited": [
762
+ "accelerometer",
763
+ "accent-color",
764
+ "accessor-methods",
765
+ "ad-selection",
766
+ "alignment-baseline",
767
+ "alternative-style-sheets",
768
+ "ambient-light",
769
+ "anchor-positioning",
770
+ "anchor-positioning-transforms",
771
+ "app-file-handlers",
772
+ "app-launch-handler",
773
+ "app-migration",
774
+ "app-protocol-handlers",
775
+ "app-share-targets",
776
+ "app-shortcuts",
777
+ "arguments-callee",
778
+ "arianotify",
779
+ "async-iterable-streams",
780
+ "attr",
781
+ "attribution-reporting",
782
+ "audio-session",
783
+ "audio-video-tracks",
784
+ "audiolistener",
785
+ "audiolistener-setposition-setorientation",
786
+ "autocapitalize",
787
+ "autocorrect",
788
+ "autofill",
789
+ "background-attachment",
790
+ "background-clip-border-area",
791
+ "background-clip-text",
792
+ "background-fetch",
793
+ "background-sync",
794
+ "badging",
795
+ "barcode",
796
+ "baseline-source",
797
+ "battery",
798
+ "beforeinstallprompt",
799
+ "beforeunload",
800
+ "bfcache-blocking-reasons",
801
+ "blocking-render",
802
+ "border-shape",
803
+ "box-decoration-break",
804
+ "calc-size",
805
+ "canvas-2d-alpha",
806
+ "canvas-2d-color-management",
807
+ "canvas-2d-desynchronized",
808
+ "canvas-context-lost",
809
+ "canvas-html",
810
+ "capture-handle",
811
+ "capture-stream-audio-video",
812
+ "caret-shape",
813
+ "case-sensitive-attributes",
814
+ "clear-site-data",
815
+ "clip",
816
+ "clipboard-custom-format",
817
+ "clipboard-svg",
818
+ "clipboard-unsanitized-formats",
819
+ "clipboardchange",
820
+ "closewatcher",
821
+ "color-adjust",
822
+ "color-contrast",
823
+ "color-mix-variadic",
824
+ "colrv1",
825
+ "column-breaks",
826
+ "column-pseudo",
827
+ "compression-dictionary-transport",
828
+ "compute-pressure",
829
+ "contact-picker",
830
+ "container-anchor-position-queries",
831
+ "container-scroll-state-queries",
832
+ "content-index",
833
+ "context-fill-stroke",
834
+ "controls-list",
835
+ "cookie-store",
836
+ "corner-shape",
837
+ "counter-reset-reversed",
838
+ "cross-document-view-transitions",
839
+ "cross-fade",
840
+ "css-modules",
841
+ "css-object-model-discouraged",
842
+ "css-typed-om",
843
+ "cursor",
844
+ "custom-ellipses",
845
+ "custom-media-queries",
846
+ "customizable-select",
847
+ "customized-built-in-elements",
848
+ "datalist",
849
+ "date-get-year-set-year",
850
+ "date-to-gmt-string",
851
+ "declarative-webmcp",
852
+ "device-bound-session-credentials",
853
+ "device-memory",
854
+ "device-posture",
855
+ "device-queries",
856
+ "devicepixelratio",
857
+ "dialog-closedby",
858
+ "digital-credentials",
859
+ "digital-goods",
860
+ "display-animation",
861
+ "display-contents",
862
+ "display-mode",
863
+ "display-ruby",
864
+ "document-colors",
865
+ "document-modelcontext",
866
+ "document-picture-in-picture",
867
+ "document-write",
868
+ "dynamic-range-limit",
869
+ "early-data",
870
+ "edit-context",
871
+ "element",
872
+ "element-capture",
873
+ "element-timing",
874
+ "escape-unescape",
875
+ "execcommand",
876
+ "explicit-resource-management",
877
+ "ext-disjoint-timer-query",
878
+ "ext-float-blend",
879
+ "ext-frag-depth",
880
+ "ext-shader-texture-lod",
881
+ "ext-texture-compression-bptc",
882
+ "ext-texture-compression-rgtc",
883
+ "ext-texture-norm16",
884
+ "external",
885
+ "eyedropper",
886
+ "fast-seek",
887
+ "feature-policy",
888
+ "fedcm",
889
+ "federated-credentials",
890
+ "fencedframe",
891
+ "fetch-formdata",
892
+ "fetch-metadata",
893
+ "fetch-request-streams",
894
+ "fetchlater",
895
+ "field-sizing",
896
+ "file-system-access",
897
+ "filter-function",
898
+ "fit-content-function",
899
+ "focusgroup",
900
+ "font-family-ui",
901
+ "font-language-override",
902
+ "font-metric-overrides",
903
+ "font-palette-animation",
904
+ "font-synthesis-position",
905
+ "font-variant-emoji",
906
+ "font-variant-position",
907
+ "font-width",
908
+ "fullscreen",
909
+ "function",
910
+ "functions-caller-arguments",
911
+ "gamepad-haptics",
912
+ "gamepad-touch",
913
+ "gamepad-vr",
914
+ "gap-decorations",
915
+ "geolocation-element",
916
+ "getallrecords",
917
+ "getboxquads",
918
+ "glyph-orientation-vertical",
919
+ "gpc",
920
+ "gyroscope",
921
+ "hanging-punctuation",
922
+ "has-slotted",
923
+ "heading-selectors",
924
+ "hidden-until-found",
925
+ "highlightsfrompoint",
926
+ "host-context",
927
+ "html-media-capture",
928
+ "html-wrapper-methods",
929
+ "hyphenate-limit-chars",
930
+ "idle-detection",
931
+ "if",
932
+ "iframe-credentialless",
933
+ "image-function",
934
+ "ime-mode",
935
+ "import-assertions",
936
+ "initial-letter",
937
+ "ink",
938
+ "input-color",
939
+ "input-color-alpha",
940
+ "insertable-streams",
941
+ "install",
942
+ "interactivity",
943
+ "interest-invokers",
944
+ "interpolate-size",
945
+ "intersection-observer-v2",
946
+ "intl-locale-info",
947
+ "inverted-colors",
948
+ "is-error",
949
+ "is-input-pending",
950
+ "jpegxl",
951
+ "justify-self-block",
952
+ "keyboard-lock",
953
+ "keyboard-map",
954
+ "khr-parallel-shader-compile",
955
+ "languagedetector",
956
+ "languagemodel",
957
+ "layout-instability",
958
+ "light-dark-image",
959
+ "line-clamp",
960
+ "link-rel-expect",
961
+ "link-rel-prefetch",
962
+ "loading-lazy-media",
963
+ "local-fonts",
964
+ "local-network-access",
965
+ "long-animation-frames",
966
+ "longtasks",
967
+ "magnetometer",
968
+ "managed-media-source",
969
+ "manifest",
970
+ "manifest-localization",
971
+ "margin-trim",
972
+ "marker",
973
+ "mask-border",
974
+ "masonry",
975
+ "mathml-full",
976
+ "measure-memory",
977
+ "media-pseudos",
978
+ "media-session",
979
+ "media-source",
980
+ "mediacontroller",
981
+ "meta-application-title",
982
+ "meta-text-scale",
983
+ "meta-theme-color",
984
+ "move-before",
985
+ "mutation-events",
986
+ "navigation-precommit-handlers",
987
+ "navigation-timing-confidence",
988
+ "navigator-install",
989
+ "network-information",
990
+ "non-cookie-storage-access",
991
+ "notifications",
992
+ "numeric-factory-functions",
993
+ "object-view-box",
994
+ "observable",
995
+ "oes-texture-half-float-linear",
996
+ "opaquerange",
997
+ "orientation-sensor",
998
+ "origin",
999
+ "overflow-anchor",
1000
+ "overflow-clip-margin",
1001
+ "overflow-overlay",
1002
+ "overlay",
1003
+ "overscroll-behavior",
1004
+ "ovr-multiview2",
1005
+ "page-break-aliases",
1006
+ "page-lifecycle",
1007
+ "page-orientation",
1008
+ "page-selectors",
1009
+ "page-visibility-state",
1010
+ "paint",
1011
+ "partitioned-cookies",
1012
+ "password-credentials",
1013
+ "path-shape",
1014
+ "payment-handler",
1015
+ "payment-request",
1016
+ "performancetiming",
1017
+ "periodic-background-sync",
1018
+ "permissions-policy",
1019
+ "picture-in-picture",
1020
+ "ping",
1021
+ "pointer-lock",
1022
+ "popover-hint",
1023
+ "portal",
1024
+ "prefers-reduced-data",
1025
+ "prefers-reduced-transparency",
1026
+ "presentation-api",
1027
+ "private-click-measurement",
1028
+ "private-network-access",
1029
+ "profiler",
1030
+ "progress-function",
1031
+ "protected-audience",
1032
+ "proto",
1033
+ "random-function",
1034
+ "readablestream-from",
1035
+ "reading-flow",
1036
+ "referencetarget",
1037
+ "regexp-compile",
1038
+ "regexp-static-properties",
1039
+ "region-capture",
1040
+ "registerprotocolhandler",
1041
+ "related-apps",
1042
+ "related-website-sets",
1043
+ "remote-playback",
1044
+ "reporting-coep-violations",
1045
+ "reporting-crashes",
1046
+ "reporting-crashes-storage",
1047
+ "reporting-deprecation",
1048
+ "reporting-integrity-violations",
1049
+ "reporting-interventions",
1050
+ "reporting-permissions-policy-violations",
1051
+ "requestidlecallback",
1052
+ "resize",
1053
+ "rhythmic-sizing",
1054
+ "ruby-overhang",
1055
+ "sanitizer",
1056
+ "savedata",
1057
+ "scheduler",
1058
+ "scoped-custom-element-registries",
1059
+ "screen-capture",
1060
+ "screen-orientation-lock",
1061
+ "scroll-buttons",
1062
+ "scroll-driven-animations",
1063
+ "scroll-initial-target",
1064
+ "scroll-into-view-container",
1065
+ "scroll-marker-targets",
1066
+ "scroll-markers",
1067
+ "scroll-snap-events",
1068
+ "scroll-target-group",
1069
+ "secure-payment-confirmation",
1070
+ "selection",
1071
+ "serial",
1072
+ "serializable-errors",
1073
+ "service-workers-static-routes",
1074
+ "share",
1075
+ "shared-storage",
1076
+ "shared-storage-locks",
1077
+ "show-picker-input",
1078
+ "show-picker-select",
1079
+ "sibling-count",
1080
+ "signature-based-resource-integrity",
1081
+ "sizes-auto",
1082
+ "smooth",
1083
+ "speak",
1084
+ "speak-as",
1085
+ "speculation-rules",
1086
+ "speech-recognition",
1087
+ "speech-recognition-grammar",
1088
+ "spelling-grammar-error",
1089
+ "storage-buckets",
1090
+ "stretch",
1091
+ "style-query-range-syntax",
1092
+ "summarizer",
1093
+ "supports-at-rule",
1094
+ "svg-discouraged",
1095
+ "table-discouraged",
1096
+ "target-within",
1097
+ "temporal",
1098
+ "text-autospace",
1099
+ "text-box",
1100
+ "text-decoration-line-blink",
1101
+ "text-decoration-selection",
1102
+ "text-fit",
1103
+ "text-justify",
1104
+ "text-size-adjust",
1105
+ "text-spacing-trim",
1106
+ "text-wrap-pretty",
1107
+ "time-relative-selectors",
1108
+ "top-level-await",
1109
+ "topics",
1110
+ "touch-events",
1111
+ "transferable-streams",
1112
+ "transformstream-transformer-cancel",
1113
+ "translator",
1114
+ "ua-client-hints",
1115
+ "url-cross-origin",
1116
+ "url-integrity",
1117
+ "url-referrer-policy",
1118
+ "user-select",
1119
+ "usermedia",
1120
+ "vibration",
1121
+ "video-dynamic-range",
1122
+ "view-transitions-element-scoped",
1123
+ "viewport-segments",
1124
+ "virtual-keyboard",
1125
+ "virtual-pressure-sources",
1126
+ "virtual-sensors",
1127
+ "wasm-exnref-exceptions",
1128
+ "wasm-jspi",
1129
+ "wasm-memory64",
1130
+ "wasm-multi-memory",
1131
+ "wasm-simd-relaxed",
1132
+ "wasm-string-builtins",
1133
+ "web-animations-iterationcomposite",
1134
+ "web-bluetooth",
1135
+ "web-midi",
1136
+ "web-nfc",
1137
+ "web-otp",
1138
+ "webauthn-signals",
1139
+ "webcodecs",
1140
+ "webdriver",
1141
+ "webdriver-bidi",
1142
+ "webgl-compressed-texture-pvrtc",
1143
+ "webgl-compressed-texture-s3tc",
1144
+ "webgl-compressed-texture-s3tc-srgb",
1145
+ "webgl-desynchronized",
1146
+ "webgl-draw-buffers",
1147
+ "webgl-multi-draw",
1148
+ "webgl-sab",
1149
+ "webgl2-desynchronized",
1150
+ "webgpu",
1151
+ "webgpu-subgroups",
1152
+ "webhid",
1153
+ "webnn",
1154
+ "webusb",
1155
+ "webvr",
1156
+ "webvtt-cue-alignment",
1157
+ "webvtt-regions",
1158
+ "webxr-anchors",
1159
+ "webxr-ar",
1160
+ "webxr-camera",
1161
+ "webxr-depth-sensing",
1162
+ "webxr-device",
1163
+ "webxr-dom-overlays",
1164
+ "webxr-gamepads",
1165
+ "webxr-hand-input",
1166
+ "webxr-hit-test",
1167
+ "webxr-layers",
1168
+ "webxr-lighting-estimation",
1169
+ "wheel-events",
1170
+ "widows-orphans",
1171
+ "window-controls-overlay",
1172
+ "window-management",
1173
+ "with",
1174
+ "word-break-auto-phrase",
1175
+ "word-break-break-word",
1176
+ "writing-mode-svg-values",
1177
+ "writingsuggestions"
1178
+ ]
1179
+ }