Skip to content

Commit b56ccaf

Browse files
committed
Fix CDDL
1 parent 7bcd470 commit b56ccaf

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

index.bs

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3738,10 +3738,10 @@ NetworkResult = (
37383738
)
37393739

37403740
NetworkEvent = (
3741-
NetworkBeforeSendRequest //
3742-
NetworkResponseStarted //
3743-
NetworkResponseCompleted //
3744-
NetworkError
3741+
NetworkBeforeRequestSentEvent //
3742+
NetworkResponseStartedEvent //
3743+
NetworkResponseCompletedEvent //
3744+
NetworkFetchErrorEvent
37453745
)
37463746

37473747
</pre>
@@ -3808,9 +3808,9 @@ NetworkCookie = {
38083808
path: text,
38093809
expires: uint,
38103810
size: uint,
3811-
httpOnly: boolean,
3812-
secure: boolean,
3813-
session: boolean,
3811+
httpOnly: bool,
3812+
secure: bool,
3813+
session: bool,
38143814
sameSite: "strict" / "lax" / "none",
38153815
};
38163816
</pre>
@@ -3828,20 +3828,20 @@ of the cookie value.
38283828

38293829
<pre class="cddl local-cddl">
38303830
NetworkFetchTimingInfo = {
3831-
requestTime: uint,
3832-
redirectStart: uint,
3833-
redirectEnd: uint,
3834-
fetchStart: uint,
3835-
dnsStart: uint,
3836-
dnsEnd: uint,
3837-
connectStart: uint,
3838-
connectEnd: uint,
3839-
tlsStart: uint,
3840-
<!-- tlsEnd: uint this should be the same as connectEnd -->
3841-
requestStart: uint,
3842-
responseStart: uint,
3843-
<!-- TODO responseHeadersEnd: uint: Not sure quite what to use for this -->
3844-
responseEnd: uint,
3831+
requestTime: float,
3832+
redirectStart: float,
3833+
redirectEnd: float,
3834+
fetchStart: float,
3835+
dnsStart: float,
3836+
dnsEnd: float,
3837+
connectStart: float,
3838+
connectEnd: float,
3839+
tlsStart: float,
3840+
<!-- tlsEnd: float this should be the same as connectEnd -->
3841+
requestStart: float,
3842+
responseStart: float,
3843+
<!-- TODO responseHeadersEnd: float: Not sure quite what to use for this -->
3844+
responseEnd: float,
38453845
};
38463846
</pre>
38473847

@@ -4285,7 +4285,7 @@ error</dfn> steps given |request|:
42854285
<pre class="cddl local-cddl">
42864286
NetworkResponseCompletedEvent = {
42874287
method: "network.responseCompleted",
4288-
params: NetworkResponseCompleteParams
4288+
params: NetworkResponseCompletedParams
42894289
}
42904290

42914291
NetworkResponseCompletedParams = {

0 commit comments

Comments
 (0)