Skip to content

Commit db07f47

Browse files
author
reffy-bot
committed
Update of TR report from new reffy run
Using reffy commit 19.1.7.
1 parent 84b34ec commit db07f47

30 files changed

+3715
-2955
lines changed

tr/algorithms/IndexedDB-3.json

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

tr/algorithms/webdriver-bidi.json

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

tr/algorithms/webgpu.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5558,7 +5558,7 @@
55585558
]
55595559
},
55605560
{
5561-
"html": "If <var>colorAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpasscolorattachment-loadop\" id=\"ref-for-dom-gpurenderpasscolorattachment-loadop④\">loadOp</a></code> is:",
5561+
"html": "If <var>colorAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpasscolorattachment-storeop\" id=\"ref-for-dom-gpurenderpasscolorattachment-storeop①\">storeOp</a></code> is:",
55625562
"rationale": ".switch",
55635563
"steps": [
55645564
{
@@ -5586,7 +5586,7 @@
55865586
"rationale": "if",
55875587
"steps": [
55885588
{
5589-
"html": "If <var>depthStencilAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpassdepthstencilattachment-depthloadop\" id=\"ref-for-dom-gpurenderpassdepthstencilattachment-depthloadop⑥\">depthLoadOp</a></code> is:",
5589+
"html": "If <var>depthStencilAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpassdepthstencilattachment-depthstoreop\" id=\"ref-for-dom-gpurenderpassdepthstencilattachment-depthstoreop③\">depthStoreOp</a></code> is:",
55905590
"rationale": ".switch",
55915591
"steps": [
55925592
{
@@ -5609,7 +5609,7 @@
56095609
]
56105610
},
56115611
{
5612-
"html": "If <var>depthStencilAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpassdepthstencilattachment-stencilloadop\" id=\"ref-for-dom-gpurenderpassdepthstencilattachment-stencilloadop⑤\">stencilLoadOp</a></code> is:",
5612+
"html": "If <var>depthStencilAttachment</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://www.w3.org/TR/webgpu/#dom-gpurenderpassdepthstencilattachment-stencilstoreop\" id=\"ref-for-dom-gpurenderpassdepthstencilattachment-stencilstoreop③\">stencilStoreOp</a></code> is:",
56135613
"rationale": ".switch",
56145614
"steps": [
56155615
{

tr/algorithms/webnn.json

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

tr/cddl/webdriver-bidi-all.cddl

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,7 @@ EmulationCommand = (
807807
emulation.SetGeolocationOverride //
808808
emulation.SetLocaleOverride //
809809
emulation.SetScreenOrientationOverride //
810+
emulation.SetScriptingEnabled //
810811
emulation.SetTimezoneOverride
811812
)
812813

@@ -881,6 +882,17 @@ emulation.SetScreenOrientationOverrideParameters = {
881882
? userContexts: [+browser.UserContext],
882883
}
883884

885+
emulation.SetScriptingEnabled = (
886+
method: "emulation.setScriptingEnabled",
887+
params: emulation.SetScriptingEnabledParameters
888+
)
889+
890+
emulation.SetScriptingEnabledParameters = {
891+
enabled: false / null,
892+
? contexts: [+browsingContext.BrowsingContext],
893+
? userContexts: [+browser.UserContext],
894+
}
895+
884896
emulation.SetTimezoneOverride = (
885897
method: "emulation.setTimezoneOverride",
886898
params: emulation.SetTimezoneOverrideParameters
@@ -2708,6 +2720,7 @@ EmulationCommand = (
27082720
emulation.SetGeolocationOverride //
27092721
emulation.SetLocaleOverride //
27102722
emulation.SetScreenOrientationOverride //
2723+
emulation.SetScriptingEnabled //
27112724
emulation.SetTimezoneOverride
27122725
)
27132726

@@ -2782,6 +2795,17 @@ emulation.SetScreenOrientationOverrideParameters = {
27822795
? userContexts: [+browser.UserContext],
27832796
}
27842797

2798+
emulation.SetScriptingEnabled = (
2799+
method: "emulation.setScriptingEnabled",
2800+
params: emulation.SetScriptingEnabledParameters
2801+
)
2802+
2803+
emulation.SetScriptingEnabledParameters = {
2804+
enabled: false / null,
2805+
? contexts: [+browsingContext.BrowsingContext],
2806+
? userContexts: [+browser.UserContext],
2807+
}
2808+
27852809
emulation.SetTimezoneOverride = (
27862810
method: "emulation.setTimezoneOverride",
27872811
params: emulation.SetTimezoneOverrideParameters

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1686,6 +1686,7 @@ EmulationCommand = (
16861686
emulation.SetGeolocationOverride //
16871687
emulation.SetLocaleOverride //
16881688
emulation.SetScreenOrientationOverride //
1689+
emulation.SetScriptingEnabled //
16891690
emulation.SetTimezoneOverride
16901691
)
16911692

@@ -1760,6 +1761,17 @@ emulation.SetScreenOrientationOverrideParameters = {
17601761
? userContexts: [+browser.UserContext],
17611762
}
17621763

1764+
emulation.SetScriptingEnabled = (
1765+
method: "emulation.setScriptingEnabled",
1766+
params: emulation.SetScriptingEnabledParameters
1767+
)
1768+
1769+
emulation.SetScriptingEnabledParameters = {
1770+
enabled: false / null,
1771+
? contexts: [+browsingContext.BrowsingContext],
1772+
? userContexts: [+browser.UserContext],
1773+
}
1774+
17631775
emulation.SetTimezoneOverride = (
17641776
method: "emulation.setTimezoneOverride",
17651777
params: emulation.SetTimezoneOverrideParameters

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ EmulationCommand = (
489489
emulation.SetGeolocationOverride //
490490
emulation.SetLocaleOverride //
491491
emulation.SetScreenOrientationOverride //
492+
emulation.SetScriptingEnabled //
492493
emulation.SetTimezoneOverride
493494
)
494495

@@ -563,6 +564,17 @@ emulation.SetScreenOrientationOverrideParameters = {
563564
? userContexts: [+browser.UserContext],
564565
}
565566

567+
emulation.SetScriptingEnabled = (
568+
method: "emulation.setScriptingEnabled",
569+
params: emulation.SetScriptingEnabledParameters
570+
)
571+
572+
emulation.SetScriptingEnabledParameters = {
573+
enabled: false / null,
574+
? contexts: [+browsingContext.BrowsingContext],
575+
? userContexts: [+browser.UserContext],
576+
}
577+
566578
emulation.SetTimezoneOverride = (
567579
method: "emulation.setTimezoneOverride",
568580
params: emulation.SetTimezoneOverrideParameters
@@ -2063,6 +2075,7 @@ EmulationCommand = (
20632075
emulation.SetGeolocationOverride //
20642076
emulation.SetLocaleOverride //
20652077
emulation.SetScreenOrientationOverride //
2078+
emulation.SetScriptingEnabled //
20662079
emulation.SetTimezoneOverride
20672080
)
20682081

@@ -2137,6 +2150,17 @@ emulation.SetScreenOrientationOverrideParameters = {
21372150
? userContexts: [+browser.UserContext],
21382151
}
21392152

2153+
emulation.SetScriptingEnabled = (
2154+
method: "emulation.setScriptingEnabled",
2155+
params: emulation.SetScriptingEnabledParameters
2156+
)
2157+
2158+
emulation.SetScriptingEnabledParameters = {
2159+
enabled: false / null,
2160+
? contexts: [+browsingContext.BrowsingContext],
2161+
? userContexts: [+browser.UserContext],
2162+
}
2163+
21402164
emulation.SetTimezoneOverride = (
21412165
method: "emulation.setTimezoneOverride",
21422166
params: emulation.SetTimezoneOverrideParameters

tr/dfns/largest-contentful-paint.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,28 @@
130130
"definedIn": "pre",
131131
"links": []
132132
},
133+
{
134+
"id": "dom-largestcontentfulpaint-rendertime",
135+
"href": "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-rendertime",
136+
"linkingText": [
137+
"renderTime"
138+
],
139+
"localLinkingText": [],
140+
"type": "attribute",
141+
"for": [
142+
"LargestContentfulPaint"
143+
],
144+
"access": "public",
145+
"informative": false,
146+
"heading": {
147+
"id": "sec-largest-contentful-paint-interface",
148+
"href": "https://www.w3.org/TR/largest-contentful-paint/#sec-largest-contentful-paint-interface",
149+
"title": "LargestContentfulPaint interface",
150+
"number": "3.1"
151+
},
152+
"definedIn": "pre",
153+
"links": []
154+
},
133155
{
134156
"id": "dom-largestcontentfulpaint-size",
135157
"href": "https://www.w3.org/TR/largest-contentful-paint/#dom-largestcontentfulpaint-size",

0 commit comments

Comments
 (0)