browser-specs 2.29.0 → 3.1.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 +98 -25
- 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
|
@@ -979,7 +979,6 @@
|
|
|
979
979
|
"https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html",
|
|
980
980
|
"https://html.spec.whatwg.org/multipage/comms.html",
|
|
981
981
|
"https://html.spec.whatwg.org/multipage/server-sent-events.html",
|
|
982
|
-
"https://html.spec.whatwg.org/multipage/web-sockets.html",
|
|
983
982
|
"https://html.spec.whatwg.org/multipage/web-messaging.html",
|
|
984
983
|
"https://html.spec.whatwg.org/multipage/workers.html",
|
|
985
984
|
"https://html.spec.whatwg.org/multipage/worklets.html",
|
|
@@ -2976,6 +2975,40 @@
|
|
|
2976
2975
|
]
|
|
2977
2976
|
}
|
|
2978
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
|
+
},
|
|
2979
3012
|
{
|
|
2980
3013
|
"url": "https://webbluetoothcg.github.io/web-bluetooth/",
|
|
2981
3014
|
"seriesComposition": "full",
|
|
@@ -3051,41 +3084,35 @@
|
|
|
3051
3084
|
}
|
|
3052
3085
|
},
|
|
3053
3086
|
{
|
|
3054
|
-
"url": "https://
|
|
3087
|
+
"url": "https://websockets.spec.whatwg.org/",
|
|
3055
3088
|
"seriesComposition": "full",
|
|
3056
|
-
"shortname": "
|
|
3089
|
+
"shortname": "websockets",
|
|
3057
3090
|
"series": {
|
|
3058
|
-
"shortname": "
|
|
3059
|
-
"currentSpecification": "
|
|
3060
|
-
"title": "
|
|
3061
|
-
"shortTitle": "
|
|
3062
|
-
"nightlyUrl": "https://
|
|
3091
|
+
"shortname": "websockets",
|
|
3092
|
+
"currentSpecification": "websockets",
|
|
3093
|
+
"title": "WebSockets Standard",
|
|
3094
|
+
"shortTitle": "WebSockets",
|
|
3095
|
+
"nightlyUrl": "https://websockets.spec.whatwg.org/"
|
|
3063
3096
|
},
|
|
3064
|
-
"organization": "
|
|
3097
|
+
"organization": "WHATWG",
|
|
3065
3098
|
"groups": [
|
|
3066
3099
|
{
|
|
3067
|
-
"name": "
|
|
3068
|
-
"url": "https://
|
|
3100
|
+
"name": "HTML Workstream",
|
|
3101
|
+
"url": "https://websockets.spec.whatwg.org/"
|
|
3069
3102
|
}
|
|
3070
3103
|
],
|
|
3071
3104
|
"nightly": {
|
|
3072
|
-
"url": "https://
|
|
3073
|
-
"repository": "https://github.com/
|
|
3074
|
-
"sourcePath": "
|
|
3105
|
+
"url": "https://websockets.spec.whatwg.org/",
|
|
3106
|
+
"repository": "https://github.com/whatwg/websockets",
|
|
3107
|
+
"sourcePath": "index.bs",
|
|
3075
3108
|
"filename": "index.html"
|
|
3076
3109
|
},
|
|
3077
|
-
"title": "
|
|
3078
|
-
"source": "
|
|
3079
|
-
"shortTitle": "
|
|
3110
|
+
"title": "WebSockets Standard",
|
|
3111
|
+
"source": "specref",
|
|
3112
|
+
"shortTitle": "WebSockets",
|
|
3080
3113
|
"categories": [
|
|
3081
3114
|
"browser"
|
|
3082
|
-
]
|
|
3083
|
-
"tests": {
|
|
3084
|
-
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3085
|
-
"testPaths": [
|
|
3086
|
-
"app-history"
|
|
3087
|
-
]
|
|
3088
|
-
}
|
|
3115
|
+
]
|
|
3089
3116
|
},
|
|
3090
3117
|
{
|
|
3091
3118
|
"url": "https://wicg.github.io/background-fetch/",
|
|
@@ -3227,7 +3254,13 @@
|
|
|
3227
3254
|
"shortTitle": "Close Watcher API",
|
|
3228
3255
|
"categories": [
|
|
3229
3256
|
"browser"
|
|
3230
|
-
]
|
|
3257
|
+
],
|
|
3258
|
+
"tests": {
|
|
3259
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
3260
|
+
"testPaths": [
|
|
3261
|
+
"close-watcher"
|
|
3262
|
+
]
|
|
3263
|
+
}
|
|
3231
3264
|
},
|
|
3232
3265
|
{
|
|
3233
3266
|
"url": "https://wicg.github.io/compression/",
|
|
@@ -4341,6 +4374,43 @@
|
|
|
4341
4374
|
"browser"
|
|
4342
4375
|
]
|
|
4343
4376
|
},
|
|
4377
|
+
{
|
|
4378
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4379
|
+
"seriesComposition": "full",
|
|
4380
|
+
"shortname": "navigation-api",
|
|
4381
|
+
"series": {
|
|
4382
|
+
"shortname": "navigation-api",
|
|
4383
|
+
"currentSpecification": "navigation-api",
|
|
4384
|
+
"title": "Navigation API",
|
|
4385
|
+
"shortTitle": "Navigation API",
|
|
4386
|
+
"nightlyUrl": "https://wicg.github.io/navigation-api/"
|
|
4387
|
+
},
|
|
4388
|
+
"organization": "W3C",
|
|
4389
|
+
"groups": [
|
|
4390
|
+
{
|
|
4391
|
+
"name": "Web Platform Incubator Community Group",
|
|
4392
|
+
"url": "https://www.w3.org/community/wicg/"
|
|
4393
|
+
}
|
|
4394
|
+
],
|
|
4395
|
+
"nightly": {
|
|
4396
|
+
"url": "https://wicg.github.io/navigation-api/",
|
|
4397
|
+
"repository": "https://github.com/WICG/navigation-api",
|
|
4398
|
+
"sourcePath": "spec.bs",
|
|
4399
|
+
"filename": "index.html"
|
|
4400
|
+
},
|
|
4401
|
+
"title": "Navigation API",
|
|
4402
|
+
"source": "spec",
|
|
4403
|
+
"shortTitle": "Navigation API",
|
|
4404
|
+
"categories": [
|
|
4405
|
+
"browser"
|
|
4406
|
+
],
|
|
4407
|
+
"tests": {
|
|
4408
|
+
"repository": "https://github.com/web-platform-tests/wpt",
|
|
4409
|
+
"testPaths": [
|
|
4410
|
+
"app-history"
|
|
4411
|
+
]
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4344
4414
|
{
|
|
4345
4415
|
"url": "https://wicg.github.io/netinfo/",
|
|
4346
4416
|
"seriesComposition": "full",
|
|
@@ -16626,6 +16696,9 @@
|
|
|
16626
16696
|
"nightlyUrl": "https://webassembly.github.io/spec/js-api/"
|
|
16627
16697
|
},
|
|
16628
16698
|
"seriesVersion": "1",
|
|
16699
|
+
"forks": [
|
|
16700
|
+
"wasm-js-api-1-fork-exception-handling"
|
|
16701
|
+
],
|
|
16629
16702
|
"organization": "W3C",
|
|
16630
16703
|
"groups": [
|
|
16631
16704
|
{
|
package/package.json
CHANGED