@@ -3669,10 +3669,10 @@ NetworkResult = (
3669
3669
)
3670
3670
3671
3671
NetworkEvent = (
3672
- NetworkBeforeSendRequest //
3673
- NetworkResponseStarted //
3674
- NetworkResponseCompleted //
3675
- NetworkError
3672
+ NetworkBeforeRequestSentEvent //
3673
+ NetworkResponseStartedEvent //
3674
+ NetworkResponseCompletedEvent //
3675
+ NetworkFetchErrorEvent
3676
3676
)
3677
3677
3678
3678
</pre>
@@ -3739,9 +3739,9 @@ NetworkCookie = {
3739
3739
path: text,
3740
3740
expires: uint,
3741
3741
size: uint,
3742
- httpOnly: boolean ,
3743
- secure: boolean ,
3744
- session: boolean ,
3742
+ httpOnly: bool ,
3743
+ secure: bool ,
3744
+ session: bool ,
3745
3745
sameSite: "strict" / "lax" / "none",
3746
3746
};
3747
3747
</pre>
@@ -3759,20 +3759,20 @@ of the cookie value.
3759
3759
3760
3760
<pre class="cddl local-cddl">
3761
3761
NetworkFetchTimingInfo = {
3762
- requestTime: uint ,
3763
- redirectStart: uint ,
3764
- redirectEnd: uint ,
3765
- fetchStart: uint ,
3766
- dnsStart: uint ,
3767
- dnsEnd: uint ,
3768
- connectStart: uint ,
3769
- connectEnd: uint ,
3770
- tlsStart: uint ,
3771
- <!-- tlsEnd: uint this should be the same as connectEnd -->
3772
- requestStart: uint ,
3773
- responseStart: uint ,
3774
- <!-- TODO responseHeadersEnd: uint : Not sure quite what to use for this -->
3775
- responseEnd: uint ,
3762
+ requestTime: float ,
3763
+ redirectStart: float ,
3764
+ redirectEnd: float ,
3765
+ fetchStart: float ,
3766
+ dnsStart: float ,
3767
+ dnsEnd: float ,
3768
+ connectStart: float ,
3769
+ connectEnd: float ,
3770
+ tlsStart: float ,
3771
+ <!-- tlsEnd: float this should be the same as connectEnd -->
3772
+ requestStart: float ,
3773
+ responseStart: float ,
3774
+ <!-- TODO responseHeadersEnd: float : Not sure quite what to use for this -->
3775
+ responseEnd: float ,
3776
3776
};
3777
3777
</pre>
3778
3778
@@ -4216,7 +4216,7 @@ error</dfn> steps given |request|:
4216
4216
<pre class="cddl local-cddl">
4217
4217
NetworkResponseCompletedEvent = {
4218
4218
method: "network.responseCompleted",
4219
- params: NetworkResponseCompleteParams
4219
+ params: NetworkResponseCompletedParams
4220
4220
}
4221
4221
4222
4222
NetworkResponseCompletedParams = {
0 commit comments