browser-specs 2.30.0 → 3.2.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.
- package/README.md +34 -2
- package/index.json +81 -69
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ cross-references, WebIDL, quality, etc.
|
|
|
29
29
|
- [`seriesComposition`](#seriescomposition)
|
|
30
30
|
- [`seriesPrevious`](#seriesprevious)
|
|
31
31
|
- [`seriesNext`](#seriesnext)
|
|
32
|
+
- [`forkOf`](#forkof)
|
|
33
|
+
- [`forks`](#forks)
|
|
32
34
|
- [`organization`](#organization)
|
|
33
35
|
- [`groups`](#groups)
|
|
34
36
|
- [`release`](#release)
|
|
@@ -140,6 +142,13 @@ For WHATWG specs, this is the shortname that appears at the beginning of the URL
|
|
|
140
142
|
(e.g. `compat` for `https://compat.spec.whatwg.org/`). For specs developed on
|
|
141
143
|
GitHub, this is usually the name of repository that holds the spec.
|
|
142
144
|
|
|
145
|
+
When the spec is a fork (see [`forkOf`](#forkof)) of a base spec, its shortname
|
|
146
|
+
will start with the shortname of the base spec completed by `-fork-` and the
|
|
147
|
+
actual shortname of the fork spec. For instance, given an exception handling
|
|
148
|
+
fork of the WebAssembly spec for which the raw shortname would be
|
|
149
|
+
`exception-handling`, the actual spec shortname will be
|
|
150
|
+
`wasm-js-api-1-fork-exception-handling`.
|
|
151
|
+
|
|
143
152
|
The `shortname` property is always set.
|
|
144
153
|
|
|
145
154
|
|
|
@@ -275,8 +284,9 @@ number.
|
|
|
275
284
|
|
|
276
285
|
### `seriesComposition`
|
|
277
286
|
|
|
278
|
-
Whether the spec is a standalone spec,
|
|
279
|
-
previous level or version in the series
|
|
287
|
+
Whether the spec is a standalone spec, whether it is a delta spec over the
|
|
288
|
+
previous level or version in the series, or whether it is a temporary fork of
|
|
289
|
+
another spec. Possible values are `full`, `delta`, or `fork`.
|
|
280
290
|
|
|
281
291
|
The `seriesComposition` property is always set.
|
|
282
292
|
|
|
@@ -296,6 +306,28 @@ The `shortname` of the next spec in the series.
|
|
|
296
306
|
The `seriesNext` property is only set where there is a next level or version.
|
|
297
307
|
|
|
298
308
|
|
|
309
|
+
### `forkOf`
|
|
310
|
+
|
|
311
|
+
The shortname of the spec that this spec is a fork of.
|
|
312
|
+
|
|
313
|
+
The `forkOf` property is only set when the spec is a fork of another one. The
|
|
314
|
+
[`seriesComposition`](#seriescomposition) property is always `"fork"` when the
|
|
315
|
+
`forkOf` property is set.
|
|
316
|
+
|
|
317
|
+
A forked specs is supposed to be temporary by nature. It will be removed from
|
|
318
|
+
the list as soon as it gets merged into the main spec, or as soon as it gets
|
|
319
|
+
abandoned.
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### `forks`
|
|
323
|
+
|
|
324
|
+
An array that lists shortnames of known forks of the spec in the list.
|
|
325
|
+
|
|
326
|
+
The `forks` property is only set when there exists at least one fork of the
|
|
327
|
+
spec in the list, meaning when there is an entry in the list that has a
|
|
328
|
+
[`forkOf`](#forkof) property set to the spec's shortname.
|
|
329
|
+
|
|
330
|
+
|
|
299
331
|
### `organization`
|
|
300
332
|
|
|
301
333
|
The name of the standardization organization that owns the spec such as `W3C`,
|
package/index.json
CHANGED
|
@@ -2975,6 +2975,40 @@
|
|
|
2975
2975
|
]
|
|
2976
2976
|
}
|
|
2977
2977
|
},
|
|
2978
|
+
{
|
|
2979
|
+
"url": "https://webassembly.github.io/exception-handling/js-api/",
|
|
2980
|
+
"seriesComposition": "fork",
|
|
2981
|
+
"shortname": "wasm-js-api-1-fork-exception-handling",
|
|
2982
|
+
"series": {
|
|
2983
|
+
"shortname": "wasm-js-api",
|
|
2984
|
+
"currentSpecification": "wasm-js-api-1",
|
|
2985
|
+
"title": "WebAssembly JavaScript Interface",
|
|
2986
|
+
"shortTitle": "WebAssembly JavaScript Interface",
|
|
2987
|
+
"releaseUrl": "https://www.w3.org/TR/wasm-js-api/",
|
|
2988
|
+
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
2989
|
+
},
|
|
2990
|
+
"seriesVersion": "1",
|
|
2991
|
+
"forkOf": "wasm-js-api-1",
|
|
2992
|
+
"organization": "W3C",
|
|
2993
|
+
"groups": [
|
|
2994
|
+
{
|
|
2995
|
+
"name": "WebAssembly Community Group",
|
|
2996
|
+
"url": "https://www.w3.org/community/webassembly/"
|
|
2997
|
+
}
|
|
2998
|
+
],
|
|
2999
|
+
"nightly": {
|
|
3000
|
+
"url": "https://webassembly.github.io/exception-handling/js-api/",
|
|
3001
|
+
"repository": "https://github.com/WebAssembly/exception-handling",
|
|
3002
|
+
"sourcePath": "document/js-api/index.bs",
|
|
3003
|
+
"filename": "index.html"
|
|
3004
|
+
},
|
|
3005
|
+
"title": "WebAssembly JavaScript Interface: Exception Handling",
|
|
3006
|
+
"source": "spec",
|
|
3007
|
+
"shortTitle": "WebAssembly JavaScript Interface: Exception Handling",
|
|
3008
|
+
"categories": [
|
|
3009
|
+
"browser"
|
|
3010
|
+
]
|
|
3011
|
+
},
|
|
2978
3012
|
{
|
|
2979
3013
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
2980
3014
|
"seriesComposition": "full",
|
|
@@ -3080,43 +3114,6 @@
|
|
|
3080
3114
|
"browser"
|
|
3081
3115
|
]
|
|
3082
3116
|
},
|
|
3083
|
-
{
|
|
3084
|
-
"url": "https://wicg.github.io/app-history/",
|
|
3085
|
-
"seriesComposition": "full",
|
|
3086
|
-
"shortname": "app-history",
|
|
3087
|
-
"series": {
|
|
3088
|
-
"shortname": "app-history",
|
|
3089
|
-
"currentSpecification": "app-history",
|
|
3090
|
-
"title": "App History API",
|
|
3091
|
-
"shortTitle": "App History API",
|
|
3092
|
-
"nightlyUrl": "https://wicg.github.io/app-history/"
|
|
3093
|
-
},
|
|
3094
|
-
"organization": "W3C",
|
|
3095
|
-
"groups": [
|
|
3096
|
-
{
|
|
3097
|
-
"name": "Web Platform Incubator Community Group",
|
|
3098
|
-
"url": "https://www.w3.org/community/wicg/"
|
|
3099
|
-
}
|
|
3100
|
-
],
|
|
3101
|
-
"nightly": {
|
|
3102
|
-
"url": "https://wicg.github.io/app-history/",
|
|
3103
|
-
"repository": "https://github.com/WICG/app-history",
|
|
3104
|
-
"sourcePath": "spec.bs",
|
|
3105
|
-
"filename": "index.html"
|
|
3106
|
-
},
|
|
3107
|
-
"title": "App History API",
|
|
3108
|
-
"source": "spec",
|
|
3109
|
-
"shortTitle": "App History API",
|
|
3110
|
-
"categories": [
|
|
3111
|
-
"browser"
|
|
3112
|
-
],
|
|
3113
|
-
"tests": {
|
|
3114
|
-
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3115
|
-
"testPaths": [
|
|
3116
|
-
"app-history"
|
|
3117
|
-
]
|
|
3118
|
-
}
|
|
3119
|
-
},
|
|
3120
3117
|
{
|
|
3121
3118
|
"url": "https://wicg.github.io/background-fetch/",
|
|
3122
3119
|
"seriesComposition": "full",
|
|
@@ -3257,7 +3254,13 @@
|
|
|
3257
3254
|
"shortTitle": "Close Watcher API",
|
|
3258
3255
|
"categories": [
|
|
3259
3256
|
"browser"
|
|
3260
|
-
]
|
|
3257
|
+
],
|
|
3258
|
+
"tests": {
|
|
3259
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3260
|
+
"testPaths": [
|
|
3261
|
+
"close-watcher"
|
|
3262
|
+
]
|
|
3263
|
+
}
|
|
3261
3264
|
},
|
|
3262
3265
|
{
|
|
3263
3266
|
"url": "https://wicg.github.io/compression/",
|
|
@@ -3846,37 +3849,6 @@
|
|
|
3846
3849
|
]
|
|
3847
3850
|
}
|
|
3848
3851
|
},
|
|
3849
|
-
{
|
|
3850
|
-
"url": "https://wicg.github.io/floc/",
|
|
3851
|
-
"seriesComposition": "full",
|
|
3852
|
-
"shortname": "floc",
|
|
3853
|
-
"series": {
|
|
3854
|
-
"shortname": "floc",
|
|
3855
|
-
"currentSpecification": "floc",
|
|
3856
|
-
"title": "Federated Learning of Cohorts",
|
|
3857
|
-
"shortTitle": "Federated Learning of Cohorts",
|
|
3858
|
-
"nightlyUrl": "https://wicg.github.io/floc/"
|
|
3859
|
-
},
|
|
3860
|
-
"organization": "W3C",
|
|
3861
|
-
"groups": [
|
|
3862
|
-
{
|
|
3863
|
-
"name": "Web Platform Incubator Community Group",
|
|
3864
|
-
"url": "https://www.w3.org/community/wicg/"
|
|
3865
|
-
}
|
|
3866
|
-
],
|
|
3867
|
-
"nightly": {
|
|
3868
|
-
"url": "https://wicg.github.io/floc/",
|
|
3869
|
-
"repository": "https://github.com/WICG/floc",
|
|
3870
|
-
"sourcePath": "floc.bs",
|
|
3871
|
-
"filename": "index.html"
|
|
3872
|
-
},
|
|
3873
|
-
"title": "Federated Learning of Cohorts",
|
|
3874
|
-
"source": "spec",
|
|
3875
|
-
"shortTitle": "Federated Learning of Cohorts",
|
|
3876
|
-
"categories": [
|
|
3877
|
-
"browser"
|
|
3878
|
-
]
|
|
3879
|
-
},
|
|
3880
3852
|
{
|
|
3881
3853
|
"url": "https://wicg.github.io/get-installed-related-apps/spec/",
|
|
3882
3854
|
"seriesComposition": "full",
|
|
@@ -4371,6 +4343,43 @@
|
|
|
4371
4343
|
"browser"
|
|
4372
4344
|
]
|
|
4373
4345
|
},
|
|
4346
|
+
{
|
|
4347
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4348
|
+
"seriesComposition": "full",
|
|
4349
|
+
"shortname": "navigation-api",
|
|
4350
|
+
"series": {
|
|
4351
|
+
"shortname": "navigation-api",
|
|
4352
|
+
"currentSpecification": "navigation-api",
|
|
4353
|
+
"title": "Navigation API",
|
|
4354
|
+
"shortTitle": "Navigation API",
|
|
4355
|
+
"nightlyUrl": "https://wicg.github.io/navigation-api/"
|
|
4356
|
+
},
|
|
4357
|
+
"organization": "W3C",
|
|
4358
|
+
"groups": [
|
|
4359
|
+
{
|
|
4360
|
+
"name": "Web Platform Incubator Community Group",
|
|
4361
|
+
"url": "https://www.w3.org/community/wicg/"
|
|
4362
|
+
}
|
|
4363
|
+
],
|
|
4364
|
+
"nightly": {
|
|
4365
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4366
|
+
"repository": "https://github.com/WICG/navigation-api",
|
|
4367
|
+
"sourcePath": "spec.bs",
|
|
4368
|
+
"filename": "index.html"
|
|
4369
|
+
},
|
|
4370
|
+
"title": "Navigation API",
|
|
4371
|
+
"source": "spec",
|
|
4372
|
+
"shortTitle": "Navigation API",
|
|
4373
|
+
"categories": [
|
|
4374
|
+
"browser"
|
|
4375
|
+
],
|
|
4376
|
+
"tests": {
|
|
4377
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
4378
|
+
"testPaths": [
|
|
4379
|
+
"navigation-api"
|
|
4380
|
+
]
|
|
4381
|
+
}
|
|
4382
|
+
},
|
|
4374
4383
|
{
|
|
4375
4384
|
"url": "https://wicg.github.io/netinfo/",
|
|
4376
4385
|
"seriesComposition": "full",
|
|
@@ -16656,6 +16665,9 @@
|
|
|
16656
16665
|
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
16657
16666
|
},
|
|
16658
16667
|
"seriesVersion": "1",
|
|
16668
|
+
"forks": [
|
|
16669
|
+
"wasm-js-api-1-fork-exception-handling"
|
|
16670
|
+
],
|
|
16659
16671
|
"organization": "W3C",
|
|
16660
16672
|
"groups": [
|
|
16661
16673
|
{
|
package/package.json
CHANGED