Skip to content

Commit

Permalink
Fix CDDL
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Oct 25, 2022
1 parent de14ff2 commit e3953da
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3669,10 +3669,10 @@ NetworkResult = (
)

NetworkEvent = (
NetworkBeforeSendRequest //
NetworkResponseStarted //
NetworkResponseCompleted //
NetworkError
NetworkBeforeRequestSentEvent //
NetworkResponseStartedEvent //
NetworkResponseCompletedEvent //
NetworkFetchErrorEvent
)

</pre>
Expand Down Expand Up @@ -3739,9 +3739,9 @@ NetworkCookie = {
path: text,
expires: uint,
size: uint,
httpOnly: boolean,
secure: boolean,
session: boolean,
httpOnly: bool,
secure: bool,
session: bool,
sameSite: "strict" / "lax" / "none",
};
</pre>
Expand All @@ -3759,20 +3759,20 @@ of the cookie value.

<pre class="cddl local-cddl">
NetworkFetchTimingInfo = {
requestTime: uint,
redirectStart: uint,
redirectEnd: uint,
fetchStart: uint,
dnsStart: uint,
dnsEnd: uint,
connectStart: uint,
connectEnd: uint,
tlsStart: uint,
<!-- tlsEnd: uint this should be the same as connectEnd -->
requestStart: uint,
responseStart: uint,
<!-- TODO responseHeadersEnd: uint: Not sure quite what to use for this -->
responseEnd: uint,
requestTime: float,
redirectStart: float,
redirectEnd: float,
fetchStart: float,
dnsStart: float,
dnsEnd: float,
connectStart: float,
connectEnd: float,
tlsStart: float,
<!-- tlsEnd: float this should be the same as connectEnd -->
requestStart: float,
responseStart: float,
<!-- TODO responseHeadersEnd: float: Not sure quite what to use for this -->
responseEnd: float,
};
</pre>

Expand Down Expand Up @@ -4216,7 +4216,7 @@ error</dfn> steps given |request|:
<pre class="cddl local-cddl">
NetworkResponseCompletedEvent = {
method: "network.responseCompleted",
params: NetworkResponseCompleteParams
params: NetworkResponseCompletedParams
}

NetworkResponseCompletedParams = {
Expand Down

0 comments on commit e3953da

Please sign in to comment.