Skip to content

Commit 322b0b7

Browse files
author
reffy-bot
committed
Update of TR report from new reffy run
Using reffy commit 19.2.2.
1 parent c422d01 commit 322b0b7

13 files changed

+190
-145
lines changed

tr/algorithms/web-locks.json

Lines changed: 19 additions & 19 deletions
Large diffs are not rendered by default.

tr/cddl/webdriver-bidi-all.cddl

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ browser.DownloadBehavior = {
384384

385385
browser.DownloadBehaviorAllowed = (
386386
type: "allowed",
387-
? destinationFolder: text
387+
destinationFolder: text
388388
)
389389

390390
browser.DownloadBehaviorDenied = (
@@ -1358,7 +1358,8 @@ ScriptCommand = (
13581358
ScriptResult = (
13591359
script.AddPreloadScriptResult /
13601360
script.EvaluateResult /
1361-
script.GetRealmsResult
1361+
script.GetRealmsResult /
1362+
script.CallFunctionResult
13621363
)
13631364

13641365
ScriptEvent = (
@@ -1838,6 +1839,8 @@ script.CallFunctionParameters = {
18381839
? userActivation: bool .default false,
18391840
}
18401841

1842+
script.CallFunctionResult = script.EvaluateResult
1843+
18411844
script.Evaluate = (
18421845
method: "script.evaluate",
18431846
params: script.EvaluateParameters
@@ -2527,7 +2530,7 @@ browser.DownloadBehavior = {
25272530

25282531
browser.DownloadBehaviorAllowed = (
25292532
type: "allowed",
2530-
? destinationFolder: text
2533+
destinationFolder: text
25312534
)
25322535

25332536
browser.DownloadBehaviorDenied = (
@@ -4545,7 +4548,8 @@ network.ResponseStartedParameters = {
45454548
ScriptResult = (
45464549
script.AddPreloadScriptResult /
45474550
script.EvaluateResult /
4548-
script.GetRealmsResult
4551+
script.GetRealmsResult /
4552+
script.CallFunctionResult
45494553
)
45504554

45514555
ScriptEvent = (
@@ -4972,6 +4976,8 @@ script.AddPreloadScriptResult = {
49724976
script: script.PreloadScript
49734977
}
49744978

4979+
script.CallFunctionResult = script.EvaluateResult
4980+
49754981
script.GetRealmsResult = {
49764982
realms: [*script.RealmInfo]
49774983
}

tr/cddl/webdriver-bidi-local-cddl.cddl

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,8 @@ network.ResponseStartedParameters = {
652652
ScriptResult = (
653653
script.AddPreloadScriptResult /
654654
script.EvaluateResult /
655-
script.GetRealmsResult
655+
script.GetRealmsResult /
656+
script.CallFunctionResult
656657
)
657658

658659
ScriptEvent = (
@@ -1079,6 +1080,8 @@ script.AddPreloadScriptResult = {
10791080
script: script.PreloadScript
10801081
}
10811082

1083+
script.CallFunctionResult = script.EvaluateResult
1084+
10821085
script.GetRealmsResult = {
10831086
realms: [*script.RealmInfo]
10841087
}
@@ -1455,7 +1458,7 @@ browser.DownloadBehavior = {
14551458

14561459
browser.DownloadBehaviorAllowed = (
14571460
type: "allowed",
1458-
? destinationFolder: text
1461+
destinationFolder: text
14591462
)
14601463

14611464
browser.DownloadBehaviorDenied = (
@@ -3473,7 +3476,8 @@ network.ResponseStartedParameters = {
34733476
ScriptResult = (
34743477
script.AddPreloadScriptResult /
34753478
script.EvaluateResult /
3476-
script.GetRealmsResult
3479+
script.GetRealmsResult /
3480+
script.CallFunctionResult
34773481
)
34783482

34793483
ScriptEvent = (
@@ -3900,6 +3904,8 @@ script.AddPreloadScriptResult = {
39003904
script: script.PreloadScript
39013905
}
39023906

3907+
script.CallFunctionResult = script.EvaluateResult
3908+
39033909
script.GetRealmsResult = {
39043910
realms: [*script.RealmInfo]
39053911
}

tr/cddl/webdriver-bidi-remote-cddl.cddl

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ browser.DownloadBehavior = {
258258

259259
browser.DownloadBehaviorAllowed = (
260260
type: "allowed",
261-
? destinationFolder: text
261+
destinationFolder: text
262262
)
263263

264264
browser.DownloadBehaviorDenied = (
@@ -1882,7 +1882,7 @@ browser.DownloadBehavior = {
18821882

18831883
browser.DownloadBehaviorAllowed = (
18841884
type: "allowed",
1885-
? destinationFolder: text
1885+
destinationFolder: text
18861886
)
18871887

18881888
browser.DownloadBehaviorDenied = (
@@ -3900,7 +3900,8 @@ network.ResponseStartedParameters = {
39003900
ScriptResult = (
39013901
script.AddPreloadScriptResult /
39023902
script.EvaluateResult /
3903-
script.GetRealmsResult
3903+
script.GetRealmsResult /
3904+
script.CallFunctionResult
39043905
)
39053906

39063907
ScriptEvent = (
@@ -4327,6 +4328,8 @@ script.AddPreloadScriptResult = {
43274328
script: script.PreloadScript
43284329
}
43294330

4331+
script.CallFunctionResult = script.EvaluateResult
4332+
43304333
script.GetRealmsResult = {
43314334
realms: [*script.RealmInfo]
43324335
}

tr/dfns/web-locks.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,10 @@
312312
"access": "private",
313313
"informative": false,
314314
"heading": {
315-
"id": "title",
316-
"href": "https://www.w3.org/TR/web-locks/#title",
317-
"title": "Web Locks API"
315+
"id": "concept-lock",
316+
"href": "https://www.w3.org/TR/web-locks/#concept-lock",
317+
"title": "Locks",
318+
"number": "2.4"
318319
},
319320
"definedIn": "prose",
320321
"links": []
@@ -1167,9 +1168,10 @@
11671168
"access": "public",
11681169
"informative": false,
11691170
"heading": {
1170-
"id": "title",
1171-
"href": "https://www.w3.org/TR/web-locks/#title",
1172-
"title": "Web Locks API"
1171+
"id": "api-lock-manager-request",
1172+
"href": "https://www.w3.org/TR/web-locks/#api-lock-manager-request",
1173+
"title": "The request() method",
1174+
"number": "3.2.1"
11731175
},
11741176
"definedIn": "prose",
11751177
"links": [
@@ -1201,9 +1203,10 @@
12011203
"access": "public",
12021204
"informative": false,
12031205
"heading": {
1204-
"id": "title",
1205-
"href": "https://www.w3.org/TR/web-locks/#title",
1206-
"title": "Web Locks API"
1206+
"id": "api-lock-manager-request",
1207+
"href": "https://www.w3.org/TR/web-locks/#api-lock-manager-request",
1208+
"title": "The request() method",
1209+
"number": "3.2.1"
12071210
},
12081211
"definedIn": "prose",
12091212
"links": [
@@ -1235,9 +1238,10 @@
12351238
"access": "public",
12361239
"informative": false,
12371240
"heading": {
1238-
"id": "title",
1239-
"href": "https://www.w3.org/TR/web-locks/#title",
1240-
"title": "Web Locks API"
1241+
"id": "api-lock-manager-query",
1242+
"href": "https://www.w3.org/TR/web-locks/#api-lock-manager-query",
1243+
"title": "The query() method",
1244+
"number": "3.2.2"
12411245
},
12421246
"definedIn": "prose",
12431247
"links": [

tr/dfns/webdriver-bidi.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34412,6 +34412,26 @@
3441234412
"definedIn": "pre",
3441334413
"links": []
3441434414
},
34415+
{
34416+
"id": "cddl-type-scriptcallfunctionresult",
34417+
"href": "https://www.w3.org/TR/webdriver-bidi/#cddl-type-scriptcallfunctionresult",
34418+
"linkingText": [
34419+
"script.CallFunctionResult"
34420+
],
34421+
"localLinkingText": [],
34422+
"type": "cddl-type",
34423+
"for": [],
34424+
"access": "private",
34425+
"informative": false,
34426+
"heading": {
34427+
"id": "command-script-callFunction",
34428+
"href": "https://www.w3.org/TR/webdriver-bidi/#command-script-callFunction",
34429+
"title": "The script.callFunction Command",
34430+
"number": "7.6.4.3"
34431+
},
34432+
"definedIn": "pre",
34433+
"links": []
34434+
},
3441534435
{
3441634436
"id": "deserialize-arguments",
3441734437
"href": "https://www.w3.org/TR/webdriver-bidi/#deserialize-arguments",

tr/ids/rdf12-semantics.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,13 @@
227227
"https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-simply-entail-10",
228228
"https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-simply-entail-11",
229229
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-equivalent-2",
230+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-1",
231+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-2",
232+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-3",
233+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-4",
230234
"https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-name-11",
235+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-5",
236+
"https://www.w3.org/TR/rdf12-semantics/#ref-for-index-term-rdf-simple-interpretations-6",
231237
"https://www.w3.org/TR/rdf12-semantics/#datatypes",
232238
"https://www.w3.org/TR/rdf12-semantics/#x7-literals-and-datatypes",
233239
"https://www.w3.org/TR/rdf12-semantics/#ref-for-dfn-identify-4",
@@ -540,6 +546,7 @@
540546
"https://www.w3.org/TR/rdf12-semantics/#h-1-terms-defined-by-this-specification",
541547
"https://www.w3.org/TR/rdf12-semantics/#index-defined-elsewhere",
542548
"https://www.w3.org/TR/rdf12-semantics/#h-2-terms-defined-by-reference",
549+
"https://www.w3.org/TR/rdf12-semantics/#index-term-rdf-simple-interpretations",
543550
"https://www.w3.org/TR/rdf12-semantics/#index-term-appears-in",
544551
"https://www.w3.org/TR/rdf12-semantics/#index-term-blank-node",
545552
"https://www.w3.org/TR/rdf12-semantics/#index-term-blank-node-identifiers",

tr/ids/web-locks.json

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"https://www.w3.org/TR/web-locks/#toc-jump-text",
1010
"https://www.w3.org/TR/web-locks/#toc-toggle",
1111
"https://www.w3.org/TR/web-locks/#toc-expand-text",
12+
"https://www.w3.org/TR/web-locks/#toc-theme-toggle",
1213
"https://www.w3.org/TR/web-locks/#speclogo",
1314
"https://www.w3.org/TR/web-locks/#title",
1415
"https://www.w3.org/TR/web-locks/#w3c-state",
@@ -485,77 +486,76 @@
485486
"https://www.w3.org/TR/web-locks/#index",
486487
"https://www.w3.org/TR/web-locks/#index-defined-here",
487488
"https://www.w3.org/TR/web-locks/#index-defined-elsewhere",
488-
"https://www.w3.org/TR/web-locks/#term-for-user-agent",
489-
"https://www.w3.org/TR/web-locks/#term-for-abortsignal",
490-
"https://www.w3.org/TR/web-locks/#term-for-abortsignal-abort-reason",
491-
"https://www.w3.org/TR/web-locks/#term-for-abortsignal-aborted",
492-
"https://www.w3.org/TR/web-locks/#term-for-abortsignal-add",
493-
"https://www.w3.org/TR/web-locks/#term-for-concept-document",
494-
"https://www.w3.org/TR/web-locks/#term-for-abortsignal-remove",
495-
"https://www.w3.org/TR/web-locks/#term-for-agent",
496-
"https://www.w3.org/TR/web-locks/#term-for-navigator",
497-
"https://www.w3.org/TR/web-locks/#term-for-workernavigator",
498-
"https://www.w3.org/TR/web-locks/#term-for-integration-with-the-javascript-agent-cluster-formalism",
499-
"https://www.w3.org/TR/web-locks/#term-for-concept-document-window",
500-
"https://www.w3.org/TR/web-locks/#term-for-browsing-context",
501-
"https://www.w3.org/TR/web-locks/#term-for-enqueue-the-following-steps",
502-
"https://www.w3.org/TR/web-locks/#term-for-enqueue-the-following-steps%E2%91%A0",
503-
"https://www.w3.org/TR/web-locks/#term-for-environment-settings-object",
504-
"https://www.w3.org/TR/web-locks/#term-for-fully-active",
505-
"https://www.w3.org/TR/web-locks/#term-for-concept-environment-id",
506-
"https://www.w3.org/TR/web-locks/#term-for-concept-relevant-global",
507-
"https://www.w3.org/TR/web-locks/#term-for-relevant-settings-object",
508-
"https://www.w3.org/TR/web-locks/#term-for-responsible-event-loop",
509-
"https://www.w3.org/TR/web-locks/#term-for-starting-a-new-parallel-queue",
510-
"https://www.w3.org/TR/web-locks/#term-for-task-source",
511-
"https://www.w3.org/TR/web-locks/#term-for-unloading-document-cleanup-steps",
512-
"https://www.w3.org/TR/web-locks/#term-for-list-append",
513-
"https://www.w3.org/TR/web-locks/#term-for-set-append",
514-
"https://www.w3.org/TR/web-locks/#term-for-assert",
515-
"https://www.w3.org/TR/web-locks/#term-for-queue-enqueue",
516-
"https://www.w3.org/TR/web-locks/#term-for-map-exists",
517-
"https://www.w3.org/TR/web-locks/#term-for-list-iterate",
518-
"https://www.w3.org/TR/web-locks/#term-for-map-iterate",
519-
"https://www.w3.org/TR/web-locks/#term-for-list-is-empty",
520-
"https://www.w3.org/TR/web-locks/#term-for-list-item",
521-
"https://www.w3.org/TR/web-locks/#term-for-struct-item",
522-
"https://www.w3.org/TR/web-locks/#term-for-string",
523-
"https://www.w3.org/TR/web-locks/#term-for-list",
524-
"https://www.w3.org/TR/web-locks/#term-for-ordered-map",
525-
"https://www.w3.org/TR/web-locks/#term-for-list-prepend",
526-
"https://www.w3.org/TR/web-locks/#term-for-queue",
527-
"https://www.w3.org/TR/web-locks/#term-for-list-remove",
528-
"https://www.w3.org/TR/web-locks/#term-for-ordered-set",
529-
"https://www.w3.org/TR/web-locks/#term-for-map-set",
530-
"https://www.w3.org/TR/web-locks/#term-for-struct",
531-
"https://www.w3.org/TR/web-locks/#term-for-map-getting-the-values",
532-
"https://www.w3.org/TR/web-locks/#term-for-client",
533-
"https://www.w3.org/TR/web-locks/#term-for-dom-client-id",
534-
"https://www.w3.org/TR/web-locks/#term-for-obtain-a-local-storage-bottle-map",
535-
"https://www.w3.org/TR/web-locks/#term-for-storage-bottle",
536-
"https://www.w3.org/TR/web-locks/#term-for-storage-bucket",
537-
"https://www.w3.org/TR/web-locks/#term-for-aborterror",
538-
"https://www.w3.org/TR/web-locks/#term-for-idl-DOMException",
539-
"https://www.w3.org/TR/web-locks/#term-for-idl-DOMString",
540-
"https://www.w3.org/TR/web-locks/#term-for-Exposed",
541-
"https://www.w3.org/TR/web-locks/#term-for-invalidstateerror",
542-
"https://www.w3.org/TR/web-locks/#term-for-notsupportederror",
543-
"https://www.w3.org/TR/web-locks/#term-for-idl-promise",
544-
"https://www.w3.org/TR/web-locks/#term-for-SecureContext",
545-
"https://www.w3.org/TR/web-locks/#term-for-securityerror",
546-
"https://www.w3.org/TR/web-locks/#term-for-a-new-promise",
547-
"https://www.w3.org/TR/web-locks/#term-for-a-promise-rejected-with",
548-
"https://www.w3.org/TR/web-locks/#term-for-idl-any",
549-
"https://www.w3.org/TR/web-locks/#term-for-idl-boolean",
550-
"https://www.w3.org/TR/web-locks/#term-for-dfn-callback-function",
551-
"https://www.w3.org/TR/web-locks/#term-for-invoke-a-callback-function",
552-
"https://www.w3.org/TR/web-locks/#term-for-reject",
553-
"https://www.w3.org/TR/web-locks/#term-for-resolve",
554-
"https://www.w3.org/TR/web-locks/#term-for-idl-sequence",
555-
"https://www.w3.org/TR/web-locks/#term-for-this",
489+
"https://www.w3.org/TR/web-locks/#cca3cdb2",
490+
"https://www.w3.org/TR/web-locks/#28e64574",
491+
"https://www.w3.org/TR/web-locks/#535dd335",
492+
"https://www.w3.org/TR/web-locks/#87bc23a5",
493+
"https://www.w3.org/TR/web-locks/#a973e0fe",
494+
"https://www.w3.org/TR/web-locks/#ff87eaf9",
495+
"https://www.w3.org/TR/web-locks/#26e4aa12",
496+
"https://www.w3.org/TR/web-locks/#be0c27b2",
497+
"https://www.w3.org/TR/web-locks/#a4785085",
498+
"https://www.w3.org/TR/web-locks/#474cbfcb",
499+
"https://www.w3.org/TR/web-locks/#3349d69f",
500+
"https://www.w3.org/TR/web-locks/#0d0390b4",
501+
"https://www.w3.org/TR/web-locks/#e4d92278",
502+
"https://www.w3.org/TR/web-locks/#102df61f",
503+
"https://www.w3.org/TR/web-locks/#3e12e042",
504+
"https://www.w3.org/TR/web-locks/#0e3ba9f8",
505+
"https://www.w3.org/TR/web-locks/#73a186aa",
506+
"https://www.w3.org/TR/web-locks/#e99bd18e",
507+
"https://www.w3.org/TR/web-locks/#9c4c1e66",
508+
"https://www.w3.org/TR/web-locks/#e3288657",
509+
"https://www.w3.org/TR/web-locks/#8219d486",
510+
"https://www.w3.org/TR/web-locks/#c3b2d08c",
511+
"https://www.w3.org/TR/web-locks/#4411082c",
512+
"https://www.w3.org/TR/web-locks/#53275e46",
513+
"https://www.w3.org/TR/web-locks/#a3b18719",
514+
"https://www.w3.org/TR/web-locks/#77b4c09a",
515+
"https://www.w3.org/TR/web-locks/#06a6db54",
516+
"https://www.w3.org/TR/web-locks/#1243a891",
517+
"https://www.w3.org/TR/web-locks/#16d07e10",
518+
"https://www.w3.org/TR/web-locks/#45209803",
519+
"https://www.w3.org/TR/web-locks/#6b815fdd",
520+
"https://www.w3.org/TR/web-locks/#5afbefcd",
521+
"https://www.w3.org/TR/web-locks/#c88f3887",
522+
"https://www.w3.org/TR/web-locks/#b38d7ca1",
523+
"https://www.w3.org/TR/web-locks/#649608b9",
524+
"https://www.w3.org/TR/web-locks/#3fca5a9e",
525+
"https://www.w3.org/TR/web-locks/#e2fc6023",
526+
"https://www.w3.org/TR/web-locks/#47dfca75",
527+
"https://www.w3.org/TR/web-locks/#99c988d6",
528+
"https://www.w3.org/TR/web-locks/#15e48c39",
529+
"https://www.w3.org/TR/web-locks/#0e6b2056",
530+
"https://www.w3.org/TR/web-locks/#984221ca",
531+
"https://www.w3.org/TR/web-locks/#6d19ac93",
532+
"https://www.w3.org/TR/web-locks/#12d6b9a8",
533+
"https://www.w3.org/TR/web-locks/#f58a36be",
534+
"https://www.w3.org/TR/web-locks/#7fd418b6",
535+
"https://www.w3.org/TR/web-locks/#6bb9d790",
536+
"https://www.w3.org/TR/web-locks/#67130339",
537+
"https://www.w3.org/TR/web-locks/#6148dd37",
538+
"https://www.w3.org/TR/web-locks/#d25dfb2c",
539+
"https://www.w3.org/TR/web-locks/#dca2de17",
540+
"https://www.w3.org/TR/web-locks/#8855a9aa",
541+
"https://www.w3.org/TR/web-locks/#889e932f",
542+
"https://www.w3.org/TR/web-locks/#797018a7",
543+
"https://www.w3.org/TR/web-locks/#3182eb71",
544+
"https://www.w3.org/TR/web-locks/#bdbd19d1",
545+
"https://www.w3.org/TR/web-locks/#b75bb3bd",
546+
"https://www.w3.org/TR/web-locks/#c3e881ef",
547+
"https://www.w3.org/TR/web-locks/#dacde8b5",
548+
"https://www.w3.org/TR/web-locks/#d0b4a948",
549+
"https://www.w3.org/TR/web-locks/#6c6b1005",
550+
"https://www.w3.org/TR/web-locks/#5372cca8",
551+
"https://www.w3.org/TR/web-locks/#3ab7bf79",
552+
"https://www.w3.org/TR/web-locks/#10ce5f6f",
553+
"https://www.w3.org/TR/web-locks/#b262501e",
554+
"https://www.w3.org/TR/web-locks/#3b90bdcd",
555+
"https://www.w3.org/TR/web-locks/#9cce47fd",
556+
"https://www.w3.org/TR/web-locks/#4013a022",
556557
"https://www.w3.org/TR/web-locks/#references",
557558
"https://www.w3.org/TR/web-locks/#normative",
558-
"https://www.w3.org/TR/web-locks/#biblio-css21",
559559
"https://www.w3.org/TR/web-locks/#biblio-dom",
560560
"https://www.w3.org/TR/web-locks/#biblio-html",
561561
"https://www.w3.org/TR/web-locks/#biblio-infra",

0 commit comments

Comments
 (0)