@@ -1614,7 +1614,7 @@ session.CapabilityRequest = {
1614
1614
? proxy: session.ProxyConfiguration,
1615
1615
? unhandledPromptBehavior: session.UserPromptHandler,
1616
1616
Extensible
1617
- };
1617
+ }
1618
1618
</pre>
1619
1619
1620
1620
The <code> session.CapabilityRequest</code> type represents a specific set of
@@ -1662,7 +1662,7 @@ session.ProxyConfiguration = {
1662
1662
session.DirectProxyConfiguration //
1663
1663
session.ManualProxyConfiguration //
1664
1664
session.PacProxyConfiguration //
1665
- session.SystemProxyConfiguration //
1665
+ session.SystemProxyConfiguration
1666
1666
}
1667
1667
1668
1668
session.AutodetectProxyConfiguration = (
@@ -1697,7 +1697,7 @@ session.PacProxyConfiguration = (
1697
1697
)
1698
1698
1699
1699
session.SystemProxyConfiguration = (
1700
- proxyType: "system"
1700
+ proxyType: "system",
1701
1701
Extensible
1702
1702
)
1703
1703
@@ -1715,7 +1715,7 @@ session.UserPromptHandler = {
1715
1715
? default: session.UserPromptHandlerType,
1716
1716
? file: session.UserPromptHandlerType,
1717
1717
? prompt: session.UserPromptHandlerType,
1718
- };
1718
+ }
1719
1719
</pre>
1720
1720
1721
1721
The <code> session.UserPromptHandler</code> type represents the configuration of
@@ -2268,7 +2268,7 @@ BrowserCommand = (
2268
2268
browser.GetClientWindows //
2269
2269
browser.GetUserContexts //
2270
2270
browser.RemoveUserContext //
2271
- browser.SetClientWindowState //
2271
+ browser.SetClientWindowState
2272
2272
)
2273
2273
</pre>
2274
2274
@@ -5967,7 +5967,7 @@ network.Cookie = {
5967
5967
sameSite: network.SameSite,
5968
5968
? expiry: js-uint,
5969
5969
Extensible,
5970
- };
5970
+ }
5971
5971
</pre>
5972
5972
5973
5973
The <code> network.Cookie</code> type represents a cookie.
@@ -6021,7 +6021,7 @@ samesite-flag, which is from [[SAME-SITE-COOKIES]].
6021
6021
network.CookieHeader = {
6022
6022
name: text,
6023
6023
value: network.BytesValue,
6024
- };
6024
+ }
6025
6025
</pre>
6026
6026
6027
6027
The <code> network.CookieHeader</code> type represents the subset of cookie data
@@ -6063,7 +6063,7 @@ network.FetchTimingInfo = {
6063
6063
responseStart: float,
6064
6064
<!-- TODO responseHeadersEnd: float: Not sure quite what to use for this -->
6065
6065
responseEnd: float,
6066
- };
6066
+ }
6067
6067
</pre>
6068
6068
6069
6069
The <code> network.FetchTimingInfo</code> type represents the time of each part
@@ -6189,7 +6189,7 @@ network.Initiator = {
6189
6189
? request: network.Request,
6190
6190
? stackTrace: script.StackTrace,
6191
6191
? type: "parser" / "script" / "preflight" / "other"
6192
- };
6192
+ }
6193
6193
</pre>
6194
6194
6195
6195
The <code> network.Initiator</code> type represents the source of a network
@@ -6273,7 +6273,7 @@ network.RequestData = {
6273
6273
destination: text,
6274
6274
initiatorType: text / null,
6275
6275
timings: network.FetchTimingInfo,
6276
- };
6276
+ }
6277
6277
</pre>
6278
6278
6279
6279
The <code> network.RequestData</code> type represents an ongoing network request.
@@ -6346,7 +6346,7 @@ To <dfn>get the request data</dfn> given |request|:
6346
6346
<pre class="cddl local-cddl">
6347
6347
network.ResponseContent = {
6348
6348
size: js-uint
6349
- };
6349
+ }
6350
6350
</pre>
6351
6351
6352
6352
The <code> network.ResponseContent</code> type represents the decoded response to
@@ -6382,7 +6382,7 @@ network.ResponseData = {
6382
6382
bodySize: js-uint / null,
6383
6383
content: network.ResponseContent,
6384
6384
?authChallenges: [*network.AuthChallenge] ,
6385
- };
6385
+ }
6386
6386
</pre>
6387
6387
6388
6388
The <code> network.ResponseData</code> type represents the response to a network
@@ -8086,7 +8086,7 @@ used to send custom messages from the [=remote end=] to the [=local end=].
8086
8086
script.ChannelValue = {
8087
8087
type: "channel",
8088
8088
value: script.ChannelProperties,
8089
- };
8089
+ }
8090
8090
8091
8091
script.ChannelProperties = {
8092
8092
channel: script.Channel,
@@ -8155,7 +8155,7 @@ script.ExceptionDetails = {
8155
8155
lineNumber: js-uint,
8156
8156
stackTrace: script.StackTrace,
8157
8157
text: text,
8158
- };
8158
+ }
8159
8159
</pre>
8160
8160
8161
8161
The <code> script.ExceptionDetails</code> type represents a JavaScript exception.
@@ -9850,7 +9850,7 @@ To <dfn>get the source</dfn> given |source realm|:
9850
9850
<pre class="cddl remote-cddl">
9851
9851
script.RealmTarget = {
9852
9852
realm: script.Realm
9853
- };
9853
+ }
9854
9854
9855
9855
script.ContextTarget = {
9856
9856
context: browsingContext.BrowsingContext,
@@ -9860,7 +9860,7 @@ script.ContextTarget = {
9860
9860
script.Target = (
9861
9861
script.ContextTarget /
9862
9862
script.RealmTarget
9863
- );
9863
+ )
9864
9864
</pre>
9865
9865
9866
9866
The <code> script.Target</code> type represents a value that is either a
0 commit comments