@@ -6689,50 +6689,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
66896689 */
66906690 frameId : Network . FrameId ;
66916691 }
6692- /**
6693- * Fired when frame has started loading.
6694- */
6695- export type frameStartedLoadingPayload = {
6696- /**
6697- * Id of the frame that has started loading.
6698- */
6699- frameId : Network . FrameId ;
6700- }
6701- /**
6702- * Fired when frame has stopped loading.
6703- */
6704- export type frameStoppedLoadingPayload = {
6705- /**
6706- * Id of the frame that has stopped loading.
6707- */
6708- frameId : Network . FrameId ;
6709- }
6710- /**
6711- * Fired when frame schedules a potential navigation.
6712- */
6713- export type frameScheduledNavigationPayload = {
6714- /**
6715- * Id of the frame that has scheduled a navigation.
6716- */
6717- frameId : Network . FrameId ;
6718- /**
6719- * Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.
6720- */
6721- delay : number ;
6722- /**
6723- * Whether the naviation will happen in the same frame.
6724- */
6725- targetIsCurrentFrame : boolean ;
6726- }
6727- /**
6728- * Fired when frame no longer has a scheduled navigation.
6729- */
6730- export type frameClearedScheduledNavigationPayload = {
6731- /**
6732- * Id of the frame that has cleared its scheduled navigation.
6733- */
6734- frameId : Network . FrameId ;
6735- }
67366692 /**
67376693 * Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
67386694 */
@@ -9207,10 +9163,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
92079163 "Page.frameNavigated" : Page . frameNavigatedPayload ;
92089164 "Page.frameAttached" : Page . frameAttachedPayload ;
92099165 "Page.frameDetached" : Page . frameDetachedPayload ;
9210- "Page.frameStartedLoading" : Page . frameStartedLoadingPayload ;
9211- "Page.frameStoppedLoading" : Page . frameStoppedLoadingPayload ;
9212- "Page.frameScheduledNavigation" : Page . frameScheduledNavigationPayload ;
9213- "Page.frameClearedScheduledNavigation" : Page . frameClearedScheduledNavigationPayload ;
92149166 "Page.navigatedWithinDocument" : Page . navigatedWithinDocumentPayload ;
92159167 "Page.defaultUserPreferencesDidChange" : Page . defaultUserPreferencesDidChangePayload ;
92169168 "Page.willCheckNavigationPolicy" : Page . willCheckNavigationPolicyPayload ;
0 commit comments