@@ -3738,10 +3738,10 @@ NetworkResult = (
3738
3738
)
3739
3739
3740
3740
NetworkEvent = (
3741
- NetworkBeforeSendRequest //
3742
- NetworkResponseStarted //
3743
- NetworkResponseCompleted //
3744
- NetworkError
3741
+ NetworkBeforeRequestSentEvent //
3742
+ NetworkResponseStartedEvent //
3743
+ NetworkResponseCompletedEvent //
3744
+ NetworkFetchErrorEvent
3745
3745
)
3746
3746
3747
3747
</pre>
@@ -3808,9 +3808,9 @@ NetworkCookie = {
3808
3808
path: text,
3809
3809
expires: uint,
3810
3810
size: uint,
3811
- httpOnly: boolean ,
3812
- secure: boolean ,
3813
- session: boolean ,
3811
+ httpOnly: bool ,
3812
+ secure: bool ,
3813
+ session: bool ,
3814
3814
sameSite: "strict" / "lax" / "none",
3815
3815
};
3816
3816
</pre>
@@ -3828,20 +3828,20 @@ of the cookie value.
3828
3828
3829
3829
<pre class="cddl local-cddl">
3830
3830
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 ,
3845
3845
};
3846
3846
</pre>
3847
3847
@@ -4285,7 +4285,7 @@ error</dfn> steps given |request|:
4285
4285
<pre class="cddl local-cddl">
4286
4286
NetworkResponseCompletedEvent = {
4287
4287
method: "network.responseCompleted",
4288
- params: NetworkResponseCompleteParams
4288
+ params: NetworkResponseCompletedParams
4289
4289
}
4290
4290
4291
4291
NetworkResponseCompletedParams = {
0 commit comments