devtools-protocol 0.0.1501221 → 0.0.1501779
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/browser_protocol.json +54 -0
- package/json/js_protocol.json +6 -0
- package/package.json +1 -1
- package/pdl/domains/Target.pdl +2 -0
- package/types/protocol-mapping.d.ts +353 -0
- package/types/protocol.d.ts +5 -0
@@ -16,6 +16,7 @@ export namespace ProtocolMapping {
|
|
16
16
|
/**
|
17
17
|
* Fired when breakpoint is resolved to an actual script and location.
|
18
18
|
* Deprecated in favor of `resolvedBreakpoints` in the `scriptParsed` event.
|
19
|
+
* @deprecated
|
19
20
|
*/
|
20
21
|
'Debugger.breakpointResolved': [Protocol.Debugger.BreakpointResolvedEvent];
|
21
22
|
/**
|
@@ -58,10 +59,12 @@ export namespace ProtocolMapping {
|
|
58
59
|
* `takePreciseCoverage` for the current isolate. May only be sent if precise code
|
59
60
|
* coverage has been started. This event can be trigged by the embedder to, for example,
|
60
61
|
* trigger collection of coverage data immediately at a certain point in time.
|
62
|
+
* @experimental
|
61
63
|
*/
|
62
64
|
'Profiler.preciseCoverageDeltaUpdate': [Protocol.Profiler.PreciseCoverageDeltaUpdateEvent];
|
63
65
|
/**
|
64
66
|
* Notification is issued every time when binding is called.
|
67
|
+
* @experimental
|
65
68
|
*/
|
66
69
|
'Runtime.bindingCalled': [Protocol.Runtime.BindingCalledEvent];
|
67
70
|
/**
|
@@ -96,10 +99,12 @@ export namespace ProtocolMapping {
|
|
96
99
|
/**
|
97
100
|
* The loadComplete event mirrors the load complete event sent by the browser to assistive
|
98
101
|
* technology when the web page has finished loading.
|
102
|
+
* @experimental
|
99
103
|
*/
|
100
104
|
'Accessibility.loadComplete': [Protocol.Accessibility.LoadCompleteEvent];
|
101
105
|
/**
|
102
106
|
* The nodesUpdated event is sent every time a previously requested node has changed the in tree.
|
107
|
+
* @experimental
|
103
108
|
*/
|
104
109
|
'Accessibility.nodesUpdated': [Protocol.Accessibility.NodesUpdatedEvent];
|
105
110
|
/**
|
@@ -151,10 +156,12 @@ export namespace ProtocolMapping {
|
|
151
156
|
'BluetoothEmulation.descriptorOperationReceived': [Protocol.BluetoothEmulation.DescriptorOperationReceivedEvent];
|
152
157
|
/**
|
153
158
|
* Fired when page is about to start a download.
|
159
|
+
* @experimental
|
154
160
|
*/
|
155
161
|
'Browser.downloadWillBegin': [Protocol.Browser.DownloadWillBeginEvent];
|
156
162
|
/**
|
157
163
|
* Fired when download makes progress. Last call has |done| == true.
|
164
|
+
* @experimental
|
158
165
|
*/
|
159
166
|
'Browser.downloadProgress': [Protocol.Browser.DownloadProgressEvent];
|
160
167
|
/**
|
@@ -179,6 +186,9 @@ export namespace ProtocolMapping {
|
|
179
186
|
* Fired whenever an active document stylesheet is removed.
|
180
187
|
*/
|
181
188
|
'CSS.styleSheetRemoved': [Protocol.CSS.StyleSheetRemovedEvent];
|
189
|
+
/**
|
190
|
+
* @experimental
|
191
|
+
*/
|
182
192
|
'CSS.computedStyleUpdated': [Protocol.CSS.ComputedStyleUpdatedEvent];
|
183
193
|
/**
|
184
194
|
* This is fired whenever the list of available sinks changes. A sink is a
|
@@ -216,6 +226,7 @@ export namespace ProtocolMapping {
|
|
216
226
|
'DOM.childNodeRemoved': [Protocol.DOM.ChildNodeRemovedEvent];
|
217
227
|
/**
|
218
228
|
* Called when distribution is changed.
|
229
|
+
* @experimental
|
219
230
|
*/
|
220
231
|
'DOM.distributedNodesUpdated': [Protocol.DOM.DistributedNodesUpdatedEvent];
|
221
232
|
/**
|
@@ -224,22 +235,27 @@ export namespace ProtocolMapping {
|
|
224
235
|
'DOM.documentUpdated': [];
|
225
236
|
/**
|
226
237
|
* Fired when `Element`'s inline style is modified via a CSS property modification.
|
238
|
+
* @experimental
|
227
239
|
*/
|
228
240
|
'DOM.inlineStyleInvalidated': [Protocol.DOM.InlineStyleInvalidatedEvent];
|
229
241
|
/**
|
230
242
|
* Called when a pseudo element is added to an element.
|
243
|
+
* @experimental
|
231
244
|
*/
|
232
245
|
'DOM.pseudoElementAdded': [Protocol.DOM.PseudoElementAddedEvent];
|
233
246
|
/**
|
234
247
|
* Called when top layer elements are changed.
|
248
|
+
* @experimental
|
235
249
|
*/
|
236
250
|
'DOM.topLayerElementsUpdated': [];
|
237
251
|
/**
|
238
252
|
* Fired when a node's scrollability state changes.
|
253
|
+
* @experimental
|
239
254
|
*/
|
240
255
|
'DOM.scrollableFlagUpdated': [Protocol.DOM.ScrollableFlagUpdatedEvent];
|
241
256
|
/**
|
242
257
|
* Called when a pseudo element is removed from an element.
|
258
|
+
* @experimental
|
243
259
|
*/
|
244
260
|
'DOM.pseudoElementRemoved': [Protocol.DOM.PseudoElementRemovedEvent];
|
245
261
|
/**
|
@@ -249,10 +265,12 @@ export namespace ProtocolMapping {
|
|
249
265
|
'DOM.setChildNodes': [Protocol.DOM.SetChildNodesEvent];
|
250
266
|
/**
|
251
267
|
* Called when shadow root is popped from the element.
|
268
|
+
* @experimental
|
252
269
|
*/
|
253
270
|
'DOM.shadowRootPopped': [Protocol.DOM.ShadowRootPoppedEvent];
|
254
271
|
/**
|
255
272
|
* Called when shadow root is pushed into the element.
|
273
|
+
* @experimental
|
256
274
|
*/
|
257
275
|
'DOM.shadowRootPushed': [Protocol.DOM.ShadowRootPushedEvent];
|
258
276
|
'DOMStorage.domStorageItemAdded': [Protocol.DOMStorage.DomStorageItemAddedEvent];
|
@@ -266,6 +284,7 @@ export namespace ProtocolMapping {
|
|
266
284
|
'DeviceAccess.deviceRequestPrompted': [Protocol.DeviceAccess.DeviceRequestPromptedEvent];
|
267
285
|
/**
|
268
286
|
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
|
287
|
+
* @experimental
|
269
288
|
*/
|
270
289
|
'Emulation.virtualTimeBudgetExpired': [];
|
271
290
|
'FedCm.dialogShown': [Protocol.FedCm.DialogShownEvent];
|
@@ -296,6 +315,7 @@ export namespace ProtocolMapping {
|
|
296
315
|
/**
|
297
316
|
* Emitted only when `Input.setInterceptDrags` is enabled. Use this data with `Input.dispatchDragEvent` to
|
298
317
|
* restore normal drag and drop behavior.
|
318
|
+
* @experimental
|
299
319
|
*/
|
300
320
|
'Input.dragIntercepted': [Protocol.Input.DragInterceptedEvent];
|
301
321
|
/**
|
@@ -360,6 +380,8 @@ export namespace ProtocolMapping {
|
|
360
380
|
* Details of an intercepted HTTP request, which must be either allowed, blocked, modified or
|
361
381
|
* mocked.
|
362
382
|
* Deprecated, use Fetch.requestPaused instead.
|
383
|
+
* @deprecated
|
384
|
+
* @experimental
|
363
385
|
*/
|
364
386
|
'Network.requestIntercepted': [Protocol.Network.RequestInterceptedEvent];
|
365
387
|
/**
|
@@ -372,10 +394,12 @@ export namespace ProtocolMapping {
|
|
372
394
|
'Network.requestWillBeSent': [Protocol.Network.RequestWillBeSentEvent];
|
373
395
|
/**
|
374
396
|
* Fired when resource loading priority is changed
|
397
|
+
* @experimental
|
375
398
|
*/
|
376
399
|
'Network.resourceChangedPriority': [Protocol.Network.ResourceChangedPriorityEvent];
|
377
400
|
/**
|
378
401
|
* Fired when a signed exchange was received over the network
|
402
|
+
* @experimental
|
379
403
|
*/
|
380
404
|
'Network.signedExchangeReceived': [Protocol.Network.SignedExchangeReceivedEvent];
|
381
405
|
/**
|
@@ -424,50 +448,62 @@ export namespace ProtocolMapping {
|
|
424
448
|
'Network.webTransportClosed': [Protocol.Network.WebTransportClosedEvent];
|
425
449
|
/**
|
426
450
|
* Fired upon direct_socket.TCPSocket creation.
|
451
|
+
* @experimental
|
427
452
|
*/
|
428
453
|
'Network.directTCPSocketCreated': [Protocol.Network.DirectTCPSocketCreatedEvent];
|
429
454
|
/**
|
430
455
|
* Fired when direct_socket.TCPSocket connection is opened.
|
456
|
+
* @experimental
|
431
457
|
*/
|
432
458
|
'Network.directTCPSocketOpened': [Protocol.Network.DirectTCPSocketOpenedEvent];
|
433
459
|
/**
|
434
460
|
* Fired when direct_socket.TCPSocket is aborted.
|
461
|
+
* @experimental
|
435
462
|
*/
|
436
463
|
'Network.directTCPSocketAborted': [Protocol.Network.DirectTCPSocketAbortedEvent];
|
437
464
|
/**
|
438
465
|
* Fired when direct_socket.TCPSocket is closed.
|
466
|
+
* @experimental
|
439
467
|
*/
|
440
468
|
'Network.directTCPSocketClosed': [Protocol.Network.DirectTCPSocketClosedEvent];
|
441
469
|
/**
|
442
470
|
* Fired when data is sent to tcp direct socket stream.
|
471
|
+
* @experimental
|
443
472
|
*/
|
444
473
|
'Network.directTCPSocketChunkSent': [Protocol.Network.DirectTCPSocketChunkSentEvent];
|
445
474
|
/**
|
446
475
|
* Fired when data is received from tcp direct socket stream.
|
476
|
+
* @experimental
|
447
477
|
*/
|
448
478
|
'Network.directTCPSocketChunkReceived': [Protocol.Network.DirectTCPSocketChunkReceivedEvent];
|
449
479
|
/**
|
450
480
|
* Fired upon direct_socket.UDPSocket creation.
|
481
|
+
* @experimental
|
451
482
|
*/
|
452
483
|
'Network.directUDPSocketCreated': [Protocol.Network.DirectUDPSocketCreatedEvent];
|
453
484
|
/**
|
454
485
|
* Fired when direct_socket.UDPSocket connection is opened.
|
486
|
+
* @experimental
|
455
487
|
*/
|
456
488
|
'Network.directUDPSocketOpened': [Protocol.Network.DirectUDPSocketOpenedEvent];
|
457
489
|
/**
|
458
490
|
* Fired when direct_socket.UDPSocket is aborted.
|
491
|
+
* @experimental
|
459
492
|
*/
|
460
493
|
'Network.directUDPSocketAborted': [Protocol.Network.DirectUDPSocketAbortedEvent];
|
461
494
|
/**
|
462
495
|
* Fired when direct_socket.UDPSocket is closed.
|
496
|
+
* @experimental
|
463
497
|
*/
|
464
498
|
'Network.directUDPSocketClosed': [Protocol.Network.DirectUDPSocketClosedEvent];
|
465
499
|
/**
|
466
500
|
* Fired when message is sent to udp direct socket stream.
|
501
|
+
* @experimental
|
467
502
|
*/
|
468
503
|
'Network.directUDPSocketChunkSent': [Protocol.Network.DirectUDPSocketChunkSentEvent];
|
469
504
|
/**
|
470
505
|
* Fired when message is received from udp direct socket stream.
|
506
|
+
* @experimental
|
471
507
|
*/
|
472
508
|
'Network.directUDPSocketChunkReceived': [Protocol.Network.DirectUDPSocketChunkReceivedEvent];
|
473
509
|
/**
|
@@ -475,18 +511,21 @@ export namespace ProtocolMapping {
|
|
475
511
|
* network stack. Not every requestWillBeSent event will have an additional
|
476
512
|
* requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent
|
477
513
|
* or requestWillBeSentExtraInfo will be fired first for the same request.
|
514
|
+
* @experimental
|
478
515
|
*/
|
479
516
|
'Network.requestWillBeSentExtraInfo': [Protocol.Network.RequestWillBeSentExtraInfoEvent];
|
480
517
|
/**
|
481
518
|
* Fired when additional information about a responseReceived event is available from the network
|
482
519
|
* stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for
|
483
520
|
* it, and responseReceivedExtraInfo may be fired before or after responseReceived.
|
521
|
+
* @experimental
|
484
522
|
*/
|
485
523
|
'Network.responseReceivedExtraInfo': [Protocol.Network.ResponseReceivedExtraInfoEvent];
|
486
524
|
/**
|
487
525
|
* Fired when 103 Early Hints headers is received in addition to the common response.
|
488
526
|
* Not every responseReceived event will have an responseReceivedEarlyHints fired.
|
489
527
|
* Only one responseReceivedEarlyHints may be fired for eached responseReceived event.
|
528
|
+
* @experimental
|
490
529
|
*/
|
491
530
|
'Network.responseReceivedEarlyHints': [Protocol.Network.ResponseReceivedEarlyHintsEvent];
|
492
531
|
/**
|
@@ -494,36 +533,49 @@ export namespace ProtocolMapping {
|
|
494
533
|
* the type of the operation and whether the operation succeeded or
|
495
534
|
* failed, the event is fired before the corresponding request was sent
|
496
535
|
* or after the response was received.
|
536
|
+
* @experimental
|
497
537
|
*/
|
498
538
|
'Network.trustTokenOperationDone': [Protocol.Network.TrustTokenOperationDoneEvent];
|
499
539
|
/**
|
500
540
|
* Fired once security policy has been updated.
|
541
|
+
* @experimental
|
501
542
|
*/
|
502
543
|
'Network.policyUpdated': [];
|
503
544
|
/**
|
504
545
|
* Fired once when parsing the .wbn file has succeeded.
|
505
546
|
* The event contains the information about the web bundle contents.
|
547
|
+
* @experimental
|
506
548
|
*/
|
507
549
|
'Network.subresourceWebBundleMetadataReceived': [Protocol.Network.SubresourceWebBundleMetadataReceivedEvent];
|
508
550
|
/**
|
509
551
|
* Fired once when parsing the .wbn file has failed.
|
552
|
+
* @experimental
|
510
553
|
*/
|
511
554
|
'Network.subresourceWebBundleMetadataError': [Protocol.Network.SubresourceWebBundleMetadataErrorEvent];
|
512
555
|
/**
|
513
556
|
* Fired when handling requests for resources within a .wbn file.
|
514
557
|
* Note: this will only be fired for resources that are requested by the webpage.
|
558
|
+
* @experimental
|
515
559
|
*/
|
516
560
|
'Network.subresourceWebBundleInnerResponseParsed': [Protocol.Network.SubresourceWebBundleInnerResponseParsedEvent];
|
517
561
|
/**
|
518
562
|
* Fired when request for resources within a .wbn file failed.
|
563
|
+
* @experimental
|
519
564
|
*/
|
520
565
|
'Network.subresourceWebBundleInnerResponseError': [Protocol.Network.SubresourceWebBundleInnerResponseErrorEvent];
|
521
566
|
/**
|
522
567
|
* Is sent whenever a new report is added.
|
523
568
|
* And after 'enableReportingApi' for all existing reports.
|
569
|
+
* @experimental
|
524
570
|
*/
|
525
571
|
'Network.reportingApiReportAdded': [Protocol.Network.ReportingApiReportAddedEvent];
|
572
|
+
/**
|
573
|
+
* @experimental
|
574
|
+
*/
|
526
575
|
'Network.reportingApiReportUpdated': [Protocol.Network.ReportingApiReportUpdatedEvent];
|
576
|
+
/**
|
577
|
+
* @experimental
|
578
|
+
*/
|
527
579
|
'Network.reportingApiEndpointsChangedForOrigin': [Protocol.Network.ReportingApiEndpointsChangedForOriginEvent];
|
528
580
|
/**
|
529
581
|
* Fired when the node should be inspected. This happens after call to `setInspectMode` or when
|
@@ -553,6 +605,7 @@ export namespace ProtocolMapping {
|
|
553
605
|
'Page.frameAttached': [Protocol.Page.FrameAttachedEvent];
|
554
606
|
/**
|
555
607
|
* Fired when frame no longer has a scheduled navigation.
|
608
|
+
* @deprecated
|
556
609
|
*/
|
557
610
|
'Page.frameClearedScheduledNavigation': [Protocol.Page.FrameClearedScheduledNavigationEvent];
|
558
611
|
/**
|
@@ -562,6 +615,7 @@ export namespace ProtocolMapping {
|
|
562
615
|
/**
|
563
616
|
* Fired before frame subtree is detached. Emitted before any frame of the
|
564
617
|
* subtree is actually detached.
|
618
|
+
* @experimental
|
565
619
|
*/
|
566
620
|
'Page.frameSubtreeWillBeDetached': [Protocol.Page.FrameSubtreeWillBeDetachedEvent];
|
567
621
|
/**
|
@@ -570,8 +624,12 @@ export namespace ProtocolMapping {
|
|
570
624
|
'Page.frameNavigated': [Protocol.Page.FrameNavigatedEvent];
|
571
625
|
/**
|
572
626
|
* Fired when opening document to write to.
|
627
|
+
* @experimental
|
573
628
|
*/
|
574
629
|
'Page.documentOpened': [Protocol.Page.DocumentOpenedEvent];
|
630
|
+
/**
|
631
|
+
* @experimental
|
632
|
+
*/
|
575
633
|
'Page.frameResized': [];
|
576
634
|
/**
|
577
635
|
* Fired when a navigation starts. This event is fired for both
|
@@ -581,33 +639,42 @@ export namespace ProtocolMapping {
|
|
581
639
|
* can be fired for a single navigation, for example, when a same-document
|
582
640
|
* navigation becomes a cross-document navigation (such as in the case of a
|
583
641
|
* frameset).
|
642
|
+
* @experimental
|
584
643
|
*/
|
585
644
|
'Page.frameStartedNavigating': [Protocol.Page.FrameStartedNavigatingEvent];
|
586
645
|
/**
|
587
646
|
* Fired when a renderer-initiated navigation is requested.
|
588
647
|
* Navigation may still be cancelled after the event is issued.
|
648
|
+
* @experimental
|
589
649
|
*/
|
590
650
|
'Page.frameRequestedNavigation': [Protocol.Page.FrameRequestedNavigationEvent];
|
591
651
|
/**
|
592
652
|
* Fired when frame schedules a potential navigation.
|
653
|
+
* @deprecated
|
593
654
|
*/
|
594
655
|
'Page.frameScheduledNavigation': [Protocol.Page.FrameScheduledNavigationEvent];
|
595
656
|
/**
|
596
657
|
* Fired when frame has started loading.
|
658
|
+
* @experimental
|
597
659
|
*/
|
598
660
|
'Page.frameStartedLoading': [Protocol.Page.FrameStartedLoadingEvent];
|
599
661
|
/**
|
600
662
|
* Fired when frame has stopped loading.
|
663
|
+
* @experimental
|
601
664
|
*/
|
602
665
|
'Page.frameStoppedLoading': [Protocol.Page.FrameStoppedLoadingEvent];
|
603
666
|
/**
|
604
667
|
* Fired when page is about to start a download.
|
605
668
|
* Deprecated. Use Browser.downloadWillBegin instead.
|
669
|
+
* @deprecated
|
670
|
+
* @experimental
|
606
671
|
*/
|
607
672
|
'Page.downloadWillBegin': [Protocol.Page.DownloadWillBeginEvent];
|
608
673
|
/**
|
609
674
|
* Fired when download makes progress. Last call has |done| == true.
|
610
675
|
* Deprecated. Use Browser.downloadProgress instead.
|
676
|
+
* @deprecated
|
677
|
+
* @experimental
|
611
678
|
*/
|
612
679
|
'Page.downloadProgress': [Protocol.Page.DownloadProgressEvent];
|
613
680
|
/**
|
@@ -638,19 +705,23 @@ export namespace ProtocolMapping {
|
|
638
705
|
* not assume any ordering with the Page.frameNavigated event. This event is fired only for
|
639
706
|
* main-frame history navigation where the document changes (non-same-document navigations),
|
640
707
|
* when bfcache navigation fails.
|
708
|
+
* @experimental
|
641
709
|
*/
|
642
710
|
'Page.backForwardCacheNotUsed': [Protocol.Page.BackForwardCacheNotUsedEvent];
|
643
711
|
'Page.loadEventFired': [Protocol.Page.LoadEventFiredEvent];
|
644
712
|
/**
|
645
713
|
* Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.
|
714
|
+
* @experimental
|
646
715
|
*/
|
647
716
|
'Page.navigatedWithinDocument': [Protocol.Page.NavigatedWithinDocumentEvent];
|
648
717
|
/**
|
649
718
|
* Compressed image data requested by the `startScreencast`.
|
719
|
+
* @experimental
|
650
720
|
*/
|
651
721
|
'Page.screencastFrame': [Protocol.Page.ScreencastFrameEvent];
|
652
722
|
/**
|
653
723
|
* Fired when the page with currently enabled screencast was shown or hidden `.
|
724
|
+
* @experimental
|
654
725
|
*/
|
655
726
|
'Page.screencastVisibilityChanged': [Protocol.Page.ScreencastVisibilityChangedEvent];
|
656
727
|
/**
|
@@ -660,6 +731,7 @@ export namespace ProtocolMapping {
|
|
660
731
|
'Page.windowOpen': [Protocol.Page.WindowOpenEvent];
|
661
732
|
/**
|
662
733
|
* Issued for every compilation cache generated.
|
734
|
+
* @experimental
|
663
735
|
*/
|
664
736
|
'Page.compilationCacheProduced': [Protocol.Page.CompilationCacheProducedEvent];
|
665
737
|
/**
|
@@ -696,14 +768,17 @@ export namespace ProtocolMapping {
|
|
696
768
|
* handled with the `handleCertificateError` command. Note: this event does not fire if the
|
697
769
|
* certificate error has been allowed internally. Only one client per target should override
|
698
770
|
* certificate errors at the same time.
|
771
|
+
* @deprecated
|
699
772
|
*/
|
700
773
|
'Security.certificateError': [Protocol.Security.CertificateErrorEvent];
|
701
774
|
/**
|
702
775
|
* The security state of the page changed.
|
776
|
+
* @experimental
|
703
777
|
*/
|
704
778
|
'Security.visibleSecurityStateChanged': [Protocol.Security.VisibleSecurityStateChangedEvent];
|
705
779
|
/**
|
706
780
|
* The security state of the page changed. No longer being sent.
|
781
|
+
* @deprecated
|
707
782
|
*/
|
708
783
|
'Security.securityStateChanged': [Protocol.Security.SecurityStateChangedEvent];
|
709
784
|
'ServiceWorker.workerErrorReported': [Protocol.ServiceWorker.WorkerErrorReportedEvent];
|
@@ -754,17 +829,31 @@ export namespace ProtocolMapping {
|
|
754
829
|
'Storage.sharedStorageWorkletOperationExecutionFinished': [Protocol.Storage.SharedStorageWorkletOperationExecutionFinishedEvent];
|
755
830
|
'Storage.storageBucketCreatedOrUpdated': [Protocol.Storage.StorageBucketCreatedOrUpdatedEvent];
|
756
831
|
'Storage.storageBucketDeleted': [Protocol.Storage.StorageBucketDeletedEvent];
|
832
|
+
/**
|
833
|
+
* @experimental
|
834
|
+
*/
|
757
835
|
'Storage.attributionReportingSourceRegistered': [Protocol.Storage.AttributionReportingSourceRegisteredEvent];
|
836
|
+
/**
|
837
|
+
* @experimental
|
838
|
+
*/
|
758
839
|
'Storage.attributionReportingTriggerRegistered': [Protocol.Storage.AttributionReportingTriggerRegisteredEvent];
|
840
|
+
/**
|
841
|
+
* @experimental
|
842
|
+
*/
|
759
843
|
'Storage.attributionReportingReportSent': [Protocol.Storage.AttributionReportingReportSentEvent];
|
844
|
+
/**
|
845
|
+
* @experimental
|
846
|
+
*/
|
760
847
|
'Storage.attributionReportingVerboseDebugReportSent': [Protocol.Storage.AttributionReportingVerboseDebugReportSentEvent];
|
761
848
|
/**
|
762
849
|
* Issued when attached to target because of auto-attach or `attachToTarget` command.
|
850
|
+
* @experimental
|
763
851
|
*/
|
764
852
|
'Target.attachedToTarget': [Protocol.Target.AttachedToTargetEvent];
|
765
853
|
/**
|
766
854
|
* Issued when detached from target for any reason (including `detachFromTarget` command). Can be
|
767
855
|
* issued multiple times per target if multiple sessions have been attached to it.
|
856
|
+
* @experimental
|
768
857
|
*/
|
769
858
|
'Target.detachedFromTarget': [Protocol.Target.DetachedFromTargetEvent];
|
770
859
|
/**
|
@@ -793,10 +882,14 @@ export namespace ProtocolMapping {
|
|
793
882
|
* Informs that port was successfully bound and got a specified connection id.
|
794
883
|
*/
|
795
884
|
'Tethering.accepted': [Protocol.Tethering.AcceptedEvent];
|
885
|
+
/**
|
886
|
+
* @experimental
|
887
|
+
*/
|
796
888
|
'Tracing.bufferUsage': [Protocol.Tracing.BufferUsageEvent];
|
797
889
|
/**
|
798
890
|
* Contains a bucket of collected trace events. When tracing is stopped collected events will be
|
799
891
|
* sent as a sequence of dataCollected events followed by tracingComplete event.
|
892
|
+
* @experimental
|
800
893
|
*/
|
801
894
|
'Tracing.dataCollected': [Protocol.Tracing.DataCollectedEvent];
|
802
895
|
/**
|
@@ -943,6 +1036,9 @@ export namespace ProtocolMapping {
|
|
943
1036
|
paramsType: [Protocol.Debugger.GetScriptSourceRequest];
|
944
1037
|
returnType: Protocol.Debugger.GetScriptSourceResponse;
|
945
1038
|
};
|
1039
|
+
/**
|
1040
|
+
* @experimental
|
1041
|
+
*/
|
946
1042
|
'Debugger.disassembleWasmModule': {
|
947
1043
|
paramsType: [Protocol.Debugger.DisassembleWasmModuleRequest];
|
948
1044
|
returnType: Protocol.Debugger.DisassembleWasmModuleResponse;
|
@@ -952,6 +1048,7 @@ export namespace ProtocolMapping {
|
|
952
1048
|
* stream. If disassembly is complete, this API will invalidate the streamId
|
953
1049
|
* and return an empty chunk. Any subsequent calls for the now invalid stream
|
954
1050
|
* will return errors.
|
1051
|
+
* @experimental
|
955
1052
|
*/
|
956
1053
|
'Debugger.nextWasmDisassemblyChunk': {
|
957
1054
|
paramsType: [Protocol.Debugger.NextWasmDisassemblyChunkRequest];
|
@@ -959,6 +1056,7 @@ export namespace ProtocolMapping {
|
|
959
1056
|
};
|
960
1057
|
/**
|
961
1058
|
* This command is deprecated. Use getScriptSource instead.
|
1059
|
+
* @deprecated
|
962
1060
|
*/
|
963
1061
|
'Debugger.getWasmBytecode': {
|
964
1062
|
paramsType: [Protocol.Debugger.GetWasmBytecodeRequest];
|
@@ -966,6 +1064,7 @@ export namespace ProtocolMapping {
|
|
966
1064
|
};
|
967
1065
|
/**
|
968
1066
|
* Returns stack trace with given `stackTraceId`.
|
1067
|
+
* @experimental
|
969
1068
|
*/
|
970
1069
|
'Debugger.getStackTrace': {
|
971
1070
|
paramsType: [Protocol.Debugger.GetStackTraceRequest];
|
@@ -978,6 +1077,10 @@ export namespace ProtocolMapping {
|
|
978
1077
|
paramsType: [];
|
979
1078
|
returnType: void;
|
980
1079
|
};
|
1080
|
+
/**
|
1081
|
+
* @deprecated
|
1082
|
+
* @experimental
|
1083
|
+
*/
|
981
1084
|
'Debugger.pauseOnAsyncCall': {
|
982
1085
|
paramsType: [Protocol.Debugger.PauseOnAsyncCallRequest];
|
983
1086
|
returnType: void;
|
@@ -1033,6 +1136,7 @@ export namespace ProtocolMapping {
|
|
1033
1136
|
* Replace previous blackbox execution contexts with passed ones. Forces backend to skip
|
1034
1137
|
* stepping/pausing in scripts in these execution contexts. VM will try to leave blackboxed script by
|
1035
1138
|
* performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
|
1139
|
+
* @experimental
|
1036
1140
|
*/
|
1037
1141
|
'Debugger.setBlackboxExecutionContexts': {
|
1038
1142
|
paramsType: [Protocol.Debugger.SetBlackboxExecutionContextsRequest];
|
@@ -1042,6 +1146,7 @@ export namespace ProtocolMapping {
|
|
1042
1146
|
* Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in
|
1043
1147
|
* scripts with url matching one of the patterns. VM will try to leave blackboxed script by
|
1044
1148
|
* performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
|
1149
|
+
* @experimental
|
1045
1150
|
*/
|
1046
1151
|
'Debugger.setBlackboxPatterns': {
|
1047
1152
|
paramsType: [Protocol.Debugger.SetBlackboxPatternsRequest];
|
@@ -1052,6 +1157,7 @@ export namespace ProtocolMapping {
|
|
1052
1157
|
* scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
|
1053
1158
|
* Positions array contains positions where blackbox state is changed. First interval isn't
|
1054
1159
|
* blackboxed. Array should be sorted.
|
1160
|
+
* @experimental
|
1055
1161
|
*/
|
1056
1162
|
'Debugger.setBlackboxedRanges': {
|
1057
1163
|
paramsType: [Protocol.Debugger.SetBlackboxedRangesRequest];
|
@@ -1085,6 +1191,7 @@ export namespace ProtocolMapping {
|
|
1085
1191
|
* Sets JavaScript breakpoint before each call to the given function.
|
1086
1192
|
* If another function was created from the same source as a given one,
|
1087
1193
|
* calling it will also trigger the breakpoint.
|
1194
|
+
* @experimental
|
1088
1195
|
*/
|
1089
1196
|
'Debugger.setBreakpointOnFunctionCall': {
|
1090
1197
|
paramsType: [Protocol.Debugger.SetBreakpointOnFunctionCallRequest];
|
@@ -1107,6 +1214,7 @@ export namespace ProtocolMapping {
|
|
1107
1214
|
};
|
1108
1215
|
/**
|
1109
1216
|
* Changes return value in top frame. Available only at return break position.
|
1217
|
+
* @experimental
|
1110
1218
|
*/
|
1111
1219
|
'Debugger.setReturnValue': {
|
1112
1220
|
paramsType: [Protocol.Debugger.SetReturnValueRequest];
|
@@ -1323,6 +1431,7 @@ export namespace ProtocolMapping {
|
|
1323
1431
|
};
|
1324
1432
|
/**
|
1325
1433
|
* Returns the isolate id.
|
1434
|
+
* @experimental
|
1326
1435
|
*/
|
1327
1436
|
'Runtime.getIsolateId': {
|
1328
1437
|
paramsType: [];
|
@@ -1331,6 +1440,7 @@ export namespace ProtocolMapping {
|
|
1331
1440
|
/**
|
1332
1441
|
* Returns the JavaScript heap usage.
|
1333
1442
|
* It is the total usage of the corresponding isolate not scoped to a particular Runtime.
|
1443
|
+
* @experimental
|
1334
1444
|
*/
|
1335
1445
|
'Runtime.getHeapUsage': {
|
1336
1446
|
paramsType: [];
|
@@ -1390,10 +1500,16 @@ export namespace ProtocolMapping {
|
|
1390
1500
|
paramsType: [Protocol.Runtime.SetAsyncCallStackDepthRequest];
|
1391
1501
|
returnType: void;
|
1392
1502
|
};
|
1503
|
+
/**
|
1504
|
+
* @experimental
|
1505
|
+
*/
|
1393
1506
|
'Runtime.setCustomObjectFormatterEnabled': {
|
1394
1507
|
paramsType: [Protocol.Runtime.SetCustomObjectFormatterEnabledRequest];
|
1395
1508
|
returnType: void;
|
1396
1509
|
};
|
1510
|
+
/**
|
1511
|
+
* @experimental
|
1512
|
+
*/
|
1397
1513
|
'Runtime.setMaxCallStackSizeToCapture': {
|
1398
1514
|
paramsType: [Protocol.Runtime.SetMaxCallStackSizeToCaptureRequest];
|
1399
1515
|
returnType: void;
|
@@ -1401,6 +1517,7 @@ export namespace ProtocolMapping {
|
|
1401
1517
|
/**
|
1402
1518
|
* Terminate current or next JavaScript execution.
|
1403
1519
|
* Will cancel the termination when the outer-most script execution ends.
|
1520
|
+
* @experimental
|
1404
1521
|
*/
|
1405
1522
|
'Runtime.terminateExecution': {
|
1406
1523
|
paramsType: [];
|
@@ -1432,6 +1549,7 @@ export namespace ProtocolMapping {
|
|
1432
1549
|
* Note that the stackTrace portion of the resulting exceptionDetails will
|
1433
1550
|
* only be populated if the Runtime domain was enabled at the time when the
|
1434
1551
|
* Error was thrown.
|
1552
|
+
* @experimental
|
1435
1553
|
*/
|
1436
1554
|
'Runtime.getExceptionDetails': {
|
1437
1555
|
paramsType: [Protocol.Runtime.GetExceptionDetailsRequest];
|
@@ -1461,6 +1579,7 @@ export namespace ProtocolMapping {
|
|
1461
1579
|
};
|
1462
1580
|
/**
|
1463
1581
|
* Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.
|
1582
|
+
* @experimental
|
1464
1583
|
*/
|
1465
1584
|
'Accessibility.getPartialAXTree': {
|
1466
1585
|
paramsType: [Protocol.Accessibility.GetPartialAXTreeRequest?];
|
@@ -1468,6 +1587,7 @@ export namespace ProtocolMapping {
|
|
1468
1587
|
};
|
1469
1588
|
/**
|
1470
1589
|
* Fetches the entire accessibility tree for the root Document
|
1590
|
+
* @experimental
|
1471
1591
|
*/
|
1472
1592
|
'Accessibility.getFullAXTree': {
|
1473
1593
|
paramsType: [Protocol.Accessibility.GetFullAXTreeRequest?];
|
@@ -1476,6 +1596,7 @@ export namespace ProtocolMapping {
|
|
1476
1596
|
/**
|
1477
1597
|
* Fetches the root node.
|
1478
1598
|
* Requires `enable()` to have been called previously.
|
1599
|
+
* @experimental
|
1479
1600
|
*/
|
1480
1601
|
'Accessibility.getRootAXNode': {
|
1481
1602
|
paramsType: [Protocol.Accessibility.GetRootAXNodeRequest?];
|
@@ -1484,6 +1605,7 @@ export namespace ProtocolMapping {
|
|
1484
1605
|
/**
|
1485
1606
|
* Fetches a node and all ancestors up to and including the root.
|
1486
1607
|
* Requires `enable()` to have been called previously.
|
1608
|
+
* @experimental
|
1487
1609
|
*/
|
1488
1610
|
'Accessibility.getAXNodeAndAncestors': {
|
1489
1611
|
paramsType: [Protocol.Accessibility.GetAXNodeAndAncestorsRequest?];
|
@@ -1492,6 +1614,7 @@ export namespace ProtocolMapping {
|
|
1492
1614
|
/**
|
1493
1615
|
* Fetches a particular accessibility node by AXNodeId.
|
1494
1616
|
* Requires `enable()` to have been called previously.
|
1617
|
+
* @experimental
|
1495
1618
|
*/
|
1496
1619
|
'Accessibility.getChildAXNodes': {
|
1497
1620
|
paramsType: [Protocol.Accessibility.GetChildAXNodesRequest];
|
@@ -1503,6 +1626,7 @@ export namespace ProtocolMapping {
|
|
1503
1626
|
* ignored for accessibility, and returns those that match the specified name and role. If no DOM
|
1504
1627
|
* node is specified, or the DOM node does not exist, the command returns an error. If neither
|
1505
1628
|
* `accessibleName` or `role` is specified, it returns all the accessibility nodes in the subtree.
|
1629
|
+
* @experimental
|
1506
1630
|
*/
|
1507
1631
|
'Accessibility.queryAXTree': {
|
1508
1632
|
paramsType: [Protocol.Accessibility.QueryAXTreeRequest?];
|
@@ -1796,6 +1920,7 @@ export namespace ProtocolMapping {
|
|
1796
1920
|
};
|
1797
1921
|
/**
|
1798
1922
|
* Set permission settings for given origin.
|
1923
|
+
* @experimental
|
1799
1924
|
*/
|
1800
1925
|
'Browser.setPermission': {
|
1801
1926
|
paramsType: [Protocol.Browser.SetPermissionRequest];
|
@@ -1803,6 +1928,7 @@ export namespace ProtocolMapping {
|
|
1803
1928
|
};
|
1804
1929
|
/**
|
1805
1930
|
* Grant specific permissions to the given origin and reject all others.
|
1931
|
+
* @experimental
|
1806
1932
|
*/
|
1807
1933
|
'Browser.grantPermissions': {
|
1808
1934
|
paramsType: [Protocol.Browser.GrantPermissionsRequest];
|
@@ -1817,6 +1943,7 @@ export namespace ProtocolMapping {
|
|
1817
1943
|
};
|
1818
1944
|
/**
|
1819
1945
|
* Set the behavior when downloading a file.
|
1946
|
+
* @experimental
|
1820
1947
|
*/
|
1821
1948
|
'Browser.setDownloadBehavior': {
|
1822
1949
|
paramsType: [Protocol.Browser.SetDownloadBehaviorRequest];
|
@@ -1824,6 +1951,7 @@ export namespace ProtocolMapping {
|
|
1824
1951
|
};
|
1825
1952
|
/**
|
1826
1953
|
* Cancel a download if in progress
|
1954
|
+
* @experimental
|
1827
1955
|
*/
|
1828
1956
|
'Browser.cancelDownload': {
|
1829
1957
|
paramsType: [Protocol.Browser.CancelDownloadRequest];
|
@@ -1838,6 +1966,7 @@ export namespace ProtocolMapping {
|
|
1838
1966
|
};
|
1839
1967
|
/**
|
1840
1968
|
* Crashes browser on the main thread.
|
1969
|
+
* @experimental
|
1841
1970
|
*/
|
1842
1971
|
'Browser.crash': {
|
1843
1972
|
paramsType: [];
|
@@ -1845,6 +1974,7 @@ export namespace ProtocolMapping {
|
|
1845
1974
|
};
|
1846
1975
|
/**
|
1847
1976
|
* Crashes GPU process.
|
1977
|
+
* @experimental
|
1848
1978
|
*/
|
1849
1979
|
'Browser.crashGpuProcess': {
|
1850
1980
|
paramsType: [];
|
@@ -1860,6 +1990,7 @@ export namespace ProtocolMapping {
|
|
1860
1990
|
/**
|
1861
1991
|
* Returns the command line switches for the browser process if, and only if
|
1862
1992
|
* --enable-automation is on the commandline.
|
1993
|
+
* @experimental
|
1863
1994
|
*/
|
1864
1995
|
'Browser.getBrowserCommandLine': {
|
1865
1996
|
paramsType: [];
|
@@ -1867,6 +1998,7 @@ export namespace ProtocolMapping {
|
|
1867
1998
|
};
|
1868
1999
|
/**
|
1869
2000
|
* Get Chrome histograms.
|
2001
|
+
* @experimental
|
1870
2002
|
*/
|
1871
2003
|
'Browser.getHistograms': {
|
1872
2004
|
paramsType: [Protocol.Browser.GetHistogramsRequest?];
|
@@ -1874,6 +2006,7 @@ export namespace ProtocolMapping {
|
|
1874
2006
|
};
|
1875
2007
|
/**
|
1876
2008
|
* Get a Chrome histogram by name.
|
2009
|
+
* @experimental
|
1877
2010
|
*/
|
1878
2011
|
'Browser.getHistogram': {
|
1879
2012
|
paramsType: [Protocol.Browser.GetHistogramRequest];
|
@@ -1881,6 +2014,7 @@ export namespace ProtocolMapping {
|
|
1881
2014
|
};
|
1882
2015
|
/**
|
1883
2016
|
* Get position and size of the browser window.
|
2017
|
+
* @experimental
|
1884
2018
|
*/
|
1885
2019
|
'Browser.getWindowBounds': {
|
1886
2020
|
paramsType: [Protocol.Browser.GetWindowBoundsRequest];
|
@@ -1888,6 +2022,7 @@ export namespace ProtocolMapping {
|
|
1888
2022
|
};
|
1889
2023
|
/**
|
1890
2024
|
* Get the browser window that contains the devtools target.
|
2025
|
+
* @experimental
|
1891
2026
|
*/
|
1892
2027
|
'Browser.getWindowForTarget': {
|
1893
2028
|
paramsType: [Protocol.Browser.GetWindowForTargetRequest?];
|
@@ -1895,6 +2030,7 @@ export namespace ProtocolMapping {
|
|
1895
2030
|
};
|
1896
2031
|
/**
|
1897
2032
|
* Set position and/or size of the browser window.
|
2033
|
+
* @experimental
|
1898
2034
|
*/
|
1899
2035
|
'Browser.setWindowBounds': {
|
1900
2036
|
paramsType: [Protocol.Browser.SetWindowBoundsRequest];
|
@@ -1902,6 +2038,7 @@ export namespace ProtocolMapping {
|
|
1902
2038
|
};
|
1903
2039
|
/**
|
1904
2040
|
* Set size of the browser contents resizing browser window as necessary.
|
2041
|
+
* @experimental
|
1905
2042
|
*/
|
1906
2043
|
'Browser.setContentsSize': {
|
1907
2044
|
paramsType: [Protocol.Browser.SetContentsSizeRequest];
|
@@ -1909,6 +2046,7 @@ export namespace ProtocolMapping {
|
|
1909
2046
|
};
|
1910
2047
|
/**
|
1911
2048
|
* Set dock tile details, platform-specific.
|
2049
|
+
* @experimental
|
1912
2050
|
*/
|
1913
2051
|
'Browser.setDockTile': {
|
1914
2052
|
paramsType: [Protocol.Browser.SetDockTileRequest?];
|
@@ -1916,6 +2054,7 @@ export namespace ProtocolMapping {
|
|
1916
2054
|
};
|
1917
2055
|
/**
|
1918
2056
|
* Invoke custom browser commands used by telemetry.
|
2057
|
+
* @experimental
|
1919
2058
|
*/
|
1920
2059
|
'Browser.executeBrowserCommand': {
|
1921
2060
|
paramsType: [Protocol.Browser.ExecuteBrowserCommandRequest];
|
@@ -2012,11 +2151,15 @@ export namespace ProtocolMapping {
|
|
2012
2151
|
* to the provided property syntax, the value is parsed using combined
|
2013
2152
|
* syntax as if null `propertyName` was provided. If the value cannot be
|
2014
2153
|
* resolved even then, return the provided value without any changes.
|
2154
|
+
* @experimental
|
2015
2155
|
*/
|
2016
2156
|
'CSS.resolveValues': {
|
2017
2157
|
paramsType: [Protocol.CSS.ResolveValuesRequest];
|
2018
2158
|
returnType: Protocol.CSS.ResolveValuesResponse;
|
2019
2159
|
};
|
2160
|
+
/**
|
2161
|
+
* @experimental
|
2162
|
+
*/
|
2020
2163
|
'CSS.getLonghandProperties': {
|
2021
2164
|
paramsType: [Protocol.CSS.GetLonghandPropertiesRequest];
|
2022
2165
|
returnType: Protocol.CSS.GetLonghandPropertiesResponse;
|
@@ -2032,6 +2175,7 @@ export namespace ProtocolMapping {
|
|
2032
2175
|
/**
|
2033
2176
|
* Returns the styles coming from animations & transitions
|
2034
2177
|
* including the animation & transition styles coming from inheritance chain.
|
2178
|
+
* @experimental
|
2035
2179
|
*/
|
2036
2180
|
'CSS.getAnimatedStylesForNode': {
|
2037
2181
|
paramsType: [Protocol.CSS.GetAnimatedStylesForNodeRequest];
|
@@ -2046,6 +2190,7 @@ export namespace ProtocolMapping {
|
|
2046
2190
|
};
|
2047
2191
|
/**
|
2048
2192
|
* Returns the values of the default UA-defined environment variables used in env()
|
2193
|
+
* @experimental
|
2049
2194
|
*/
|
2050
2195
|
'CSS.getEnvironmentVariables': {
|
2051
2196
|
paramsType: [];
|
@@ -2078,6 +2223,7 @@ export namespace ProtocolMapping {
|
|
2078
2223
|
* Given a DOM element identified by nodeId, getLayersForNode returns the root
|
2079
2224
|
* layer for the nearest ancestor document or shadow root. The layer root contains
|
2080
2225
|
* the full layer tree for the tree scope and their ordering.
|
2226
|
+
* @experimental
|
2081
2227
|
*/
|
2082
2228
|
'CSS.getLayersForNode': {
|
2083
2229
|
paramsType: [Protocol.CSS.GetLayersForNodeRequest];
|
@@ -2086,6 +2232,7 @@ export namespace ProtocolMapping {
|
|
2086
2232
|
/**
|
2087
2233
|
* Given a CSS selector text and a style sheet ID, getLocationForSelector
|
2088
2234
|
* returns an array of locations of the CSS selector in the style sheet.
|
2235
|
+
* @experimental
|
2089
2236
|
*/
|
2090
2237
|
'CSS.getLocationForSelector': {
|
2091
2238
|
paramsType: [Protocol.CSS.GetLocationForSelectorRequest];
|
@@ -2098,6 +2245,7 @@ export namespace ProtocolMapping {
|
|
2098
2245
|
* There can only be 1 node tracked for computed style updates
|
2099
2246
|
* so passing a new node id removes tracking from the previous node.
|
2100
2247
|
* Pass `undefined` to disable tracking.
|
2248
|
+
* @experimental
|
2101
2249
|
*/
|
2102
2250
|
'CSS.trackComputedStyleUpdatesForNode': {
|
2103
2251
|
paramsType: [Protocol.CSS.TrackComputedStyleUpdatesForNodeRequest?];
|
@@ -2110,6 +2258,7 @@ export namespace ProtocolMapping {
|
|
2110
2258
|
* The changes to computed style properties are only tracked for nodes pushed to the front-end
|
2111
2259
|
* by the DOM agent. If no changes to the tracked properties occur after the node has been pushed
|
2112
2260
|
* to the front-end, no updates will be issued for the node.
|
2261
|
+
* @experimental
|
2113
2262
|
*/
|
2114
2263
|
'CSS.trackComputedStyleUpdates': {
|
2115
2264
|
paramsType: [Protocol.CSS.TrackComputedStyleUpdatesRequest];
|
@@ -2117,6 +2266,7 @@ export namespace ProtocolMapping {
|
|
2117
2266
|
};
|
2118
2267
|
/**
|
2119
2268
|
* Polls the next batch of computed style updates.
|
2269
|
+
* @experimental
|
2120
2270
|
*/
|
2121
2271
|
'CSS.takeComputedStyleUpdates': {
|
2122
2272
|
paramsType: [];
|
@@ -2153,6 +2303,7 @@ export namespace ProtocolMapping {
|
|
2153
2303
|
};
|
2154
2304
|
/**
|
2155
2305
|
* Modifies the expression of a container query.
|
2306
|
+
* @experimental
|
2156
2307
|
*/
|
2157
2308
|
'CSS.setContainerQueryText': {
|
2158
2309
|
paramsType: [Protocol.CSS.SetContainerQueryTextRequest];
|
@@ -2160,6 +2311,7 @@ export namespace ProtocolMapping {
|
|
2160
2311
|
};
|
2161
2312
|
/**
|
2162
2313
|
* Modifies the expression of a supports at-rule.
|
2314
|
+
* @experimental
|
2163
2315
|
*/
|
2164
2316
|
'CSS.setSupportsText': {
|
2165
2317
|
paramsType: [Protocol.CSS.SetSupportsTextRequest];
|
@@ -2167,6 +2319,7 @@ export namespace ProtocolMapping {
|
|
2167
2319
|
};
|
2168
2320
|
/**
|
2169
2321
|
* Modifies the expression of a scope at-rule.
|
2322
|
+
* @experimental
|
2170
2323
|
*/
|
2171
2324
|
'CSS.setScopeText': {
|
2172
2325
|
paramsType: [Protocol.CSS.SetScopeTextRequest];
|
@@ -2218,6 +2371,7 @@ export namespace ProtocolMapping {
|
|
2218
2371
|
};
|
2219
2372
|
/**
|
2220
2373
|
* Enables/disables rendering of local CSS fonts (enabled by default).
|
2374
|
+
* @experimental
|
2221
2375
|
*/
|
2222
2376
|
'CSS.setLocalFontsEnabled': {
|
2223
2377
|
paramsType: [Protocol.CSS.SetLocalFontsEnabledRequest];
|
@@ -2307,6 +2461,7 @@ export namespace ProtocolMapping {
|
|
2307
2461
|
};
|
2308
2462
|
/**
|
2309
2463
|
* Collects class names for the node with given id and all of it's child nodes.
|
2464
|
+
* @experimental
|
2310
2465
|
*/
|
2311
2466
|
'DOM.collectClassNamesFromSubtree': {
|
2312
2467
|
paramsType: [Protocol.DOM.CollectClassNamesFromSubtreeRequest];
|
@@ -2315,6 +2470,7 @@ export namespace ProtocolMapping {
|
|
2315
2470
|
/**
|
2316
2471
|
* Creates a deep copy of the specified node and places it into the target container before the
|
2317
2472
|
* given anchor.
|
2473
|
+
* @experimental
|
2318
2474
|
*/
|
2319
2475
|
'DOM.copyTo': {
|
2320
2476
|
paramsType: [Protocol.DOM.CopyToRequest];
|
@@ -2347,6 +2503,7 @@ export namespace ProtocolMapping {
|
|
2347
2503
|
/**
|
2348
2504
|
* Discards search results from the session with the given id. `getSearchResults` should no longer
|
2349
2505
|
* be called for that search.
|
2506
|
+
* @experimental
|
2350
2507
|
*/
|
2351
2508
|
'DOM.discardSearchResults': {
|
2352
2509
|
paramsType: [Protocol.DOM.DiscardSearchResultsRequest];
|
@@ -2383,6 +2540,7 @@ export namespace ProtocolMapping {
|
|
2383
2540
|
/**
|
2384
2541
|
* Returns quads that describe node position on the page. This method
|
2385
2542
|
* might return multiple quads for inline nodes.
|
2543
|
+
* @experimental
|
2386
2544
|
*/
|
2387
2545
|
'DOM.getContentQuads': {
|
2388
2546
|
paramsType: [Protocol.DOM.GetContentQuadsRequest?];
|
@@ -2400,6 +2558,7 @@ export namespace ProtocolMapping {
|
|
2400
2558
|
* Returns the root DOM node (and optionally the subtree) to the caller.
|
2401
2559
|
* Deprecated, as it is not designed to work well with the rest of the DOM agent.
|
2402
2560
|
* Use DOMSnapshot.captureSnapshot instead.
|
2561
|
+
* @deprecated
|
2403
2562
|
*/
|
2404
2563
|
'DOM.getFlattenedDocument': {
|
2405
2564
|
paramsType: [Protocol.DOM.GetFlattenedDocumentRequest?];
|
@@ -2407,6 +2566,7 @@ export namespace ProtocolMapping {
|
|
2407
2566
|
};
|
2408
2567
|
/**
|
2409
2568
|
* Finds nodes with a given computed style in a subtree.
|
2569
|
+
* @experimental
|
2410
2570
|
*/
|
2411
2571
|
'DOM.getNodesForSubtreeByStyle': {
|
2412
2572
|
paramsType: [Protocol.DOM.GetNodesForSubtreeByStyleRequest];
|
@@ -2429,6 +2589,7 @@ export namespace ProtocolMapping {
|
|
2429
2589
|
};
|
2430
2590
|
/**
|
2431
2591
|
* Returns the id of the nearest ancestor that is a relayout boundary.
|
2592
|
+
* @experimental
|
2432
2593
|
*/
|
2433
2594
|
'DOM.getRelayoutBoundary': {
|
2434
2595
|
paramsType: [Protocol.DOM.GetRelayoutBoundaryRequest];
|
@@ -2437,6 +2598,7 @@ export namespace ProtocolMapping {
|
|
2437
2598
|
/**
|
2438
2599
|
* Returns search results from given `fromIndex` to given `toIndex` from the search with the given
|
2439
2600
|
* identifier.
|
2601
|
+
* @experimental
|
2440
2602
|
*/
|
2441
2603
|
'DOM.getSearchResults': {
|
2442
2604
|
paramsType: [Protocol.DOM.GetSearchResultsRequest];
|
@@ -2465,6 +2627,7 @@ export namespace ProtocolMapping {
|
|
2465
2627
|
};
|
2466
2628
|
/**
|
2467
2629
|
* Marks last undoable state.
|
2630
|
+
* @experimental
|
2468
2631
|
*/
|
2469
2632
|
'DOM.markUndoableState': {
|
2470
2633
|
paramsType: [];
|
@@ -2480,6 +2643,7 @@ export namespace ProtocolMapping {
|
|
2480
2643
|
/**
|
2481
2644
|
* Searches for a given string in the DOM tree. Use `getSearchResults` to access search results or
|
2482
2645
|
* `cancelSearch` to end this search session.
|
2646
|
+
* @experimental
|
2483
2647
|
*/
|
2484
2648
|
'DOM.performSearch': {
|
2485
2649
|
paramsType: [Protocol.DOM.PerformSearchRequest];
|
@@ -2487,6 +2651,7 @@ export namespace ProtocolMapping {
|
|
2487
2651
|
};
|
2488
2652
|
/**
|
2489
2653
|
* Requests that the node is sent to the caller given its path. // FIXME, use XPath
|
2654
|
+
* @experimental
|
2490
2655
|
*/
|
2491
2656
|
'DOM.pushNodeByPathToFrontend': {
|
2492
2657
|
paramsType: [Protocol.DOM.PushNodeByPathToFrontendRequest];
|
@@ -2494,6 +2659,7 @@ export namespace ProtocolMapping {
|
|
2494
2659
|
};
|
2495
2660
|
/**
|
2496
2661
|
* Requests that a batch of nodes is sent to the caller given their backend node ids.
|
2662
|
+
* @experimental
|
2497
2663
|
*/
|
2498
2664
|
'DOM.pushNodesByBackendIdsToFrontend': {
|
2499
2665
|
paramsType: [Protocol.DOM.PushNodesByBackendIdsToFrontendRequest];
|
@@ -2517,6 +2683,7 @@ export namespace ProtocolMapping {
|
|
2517
2683
|
* Returns NodeIds of current top layer elements.
|
2518
2684
|
* Top layer is rendered closest to the user within a viewport, therefore its elements always
|
2519
2685
|
* appear on top of all other content.
|
2686
|
+
* @experimental
|
2520
2687
|
*/
|
2521
2688
|
'DOM.getTopLayerElements': {
|
2522
2689
|
paramsType: [];
|
@@ -2524,6 +2691,7 @@ export namespace ProtocolMapping {
|
|
2524
2691
|
};
|
2525
2692
|
/**
|
2526
2693
|
* Returns the NodeId of the matched element according to certain relations.
|
2694
|
+
* @experimental
|
2527
2695
|
*/
|
2528
2696
|
'DOM.getElementByRelation': {
|
2529
2697
|
paramsType: [Protocol.DOM.GetElementByRelationRequest];
|
@@ -2531,6 +2699,7 @@ export namespace ProtocolMapping {
|
|
2531
2699
|
};
|
2532
2700
|
/**
|
2533
2701
|
* Re-does the last undone action.
|
2702
|
+
* @experimental
|
2534
2703
|
*/
|
2535
2704
|
'DOM.redo': {
|
2536
2705
|
paramsType: [];
|
@@ -2599,6 +2768,7 @@ export namespace ProtocolMapping {
|
|
2599
2768
|
};
|
2600
2769
|
/**
|
2601
2770
|
* Sets if stack traces should be captured for Nodes. See `Node.getNodeStackTraces`. Default is disabled.
|
2771
|
+
* @experimental
|
2602
2772
|
*/
|
2603
2773
|
'DOM.setNodeStackTracesEnabled': {
|
2604
2774
|
paramsType: [Protocol.DOM.SetNodeStackTracesEnabledRequest];
|
@@ -2606,6 +2776,7 @@ export namespace ProtocolMapping {
|
|
2606
2776
|
};
|
2607
2777
|
/**
|
2608
2778
|
* Gets stack traces associated with a Node. As of now, only provides stack trace for Node creation.
|
2779
|
+
* @experimental
|
2609
2780
|
*/
|
2610
2781
|
'DOM.getNodeStackTraces': {
|
2611
2782
|
paramsType: [Protocol.DOM.GetNodeStackTracesRequest];
|
@@ -2614,6 +2785,7 @@ export namespace ProtocolMapping {
|
|
2614
2785
|
/**
|
2615
2786
|
* Returns file information for the given
|
2616
2787
|
* File wrapper.
|
2788
|
+
* @experimental
|
2617
2789
|
*/
|
2618
2790
|
'DOM.getFileInfo': {
|
2619
2791
|
paramsType: [Protocol.DOM.GetFileInfoRequest];
|
@@ -2621,6 +2793,7 @@ export namespace ProtocolMapping {
|
|
2621
2793
|
};
|
2622
2794
|
/**
|
2623
2795
|
* Returns list of detached nodes
|
2796
|
+
* @experimental
|
2624
2797
|
*/
|
2625
2798
|
'DOM.getDetachedDomNodes': {
|
2626
2799
|
paramsType: [];
|
@@ -2629,6 +2802,7 @@ export namespace ProtocolMapping {
|
|
2629
2802
|
/**
|
2630
2803
|
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
2631
2804
|
* $x functions).
|
2805
|
+
* @experimental
|
2632
2806
|
*/
|
2633
2807
|
'DOM.setInspectedNode': {
|
2634
2808
|
paramsType: [Protocol.DOM.SetInspectedNodeRequest];
|
@@ -2657,6 +2831,7 @@ export namespace ProtocolMapping {
|
|
2657
2831
|
};
|
2658
2832
|
/**
|
2659
2833
|
* Undoes the last performed action.
|
2834
|
+
* @experimental
|
2660
2835
|
*/
|
2661
2836
|
'DOM.undo': {
|
2662
2837
|
paramsType: [];
|
@@ -2664,6 +2839,7 @@ export namespace ProtocolMapping {
|
|
2664
2839
|
};
|
2665
2840
|
/**
|
2666
2841
|
* Returns iframe node that owns iframe with the given domain.
|
2842
|
+
* @experimental
|
2667
2843
|
*/
|
2668
2844
|
'DOM.getFrameOwner': {
|
2669
2845
|
paramsType: [Protocol.DOM.GetFrameOwnerRequest];
|
@@ -2675,6 +2851,7 @@ export namespace ProtocolMapping {
|
|
2675
2851
|
* scroll-state or anchored elements. If no axes are provided and
|
2676
2852
|
* queriesScrollState is false, the style container is returned, which is the
|
2677
2853
|
* direct parent or the closest element with a matching container-name.
|
2854
|
+
* @experimental
|
2678
2855
|
*/
|
2679
2856
|
'DOM.getContainerForNode': {
|
2680
2857
|
paramsType: [Protocol.DOM.GetContainerForNodeRequest];
|
@@ -2683,6 +2860,7 @@ export namespace ProtocolMapping {
|
|
2683
2860
|
/**
|
2684
2861
|
* Returns the descendants of a container query container that have
|
2685
2862
|
* container queries against this container.
|
2863
|
+
* @experimental
|
2686
2864
|
*/
|
2687
2865
|
'DOM.getQueryingDescendantsForContainer': {
|
2688
2866
|
paramsType: [Protocol.DOM.GetQueryingDescendantsForContainerRequest];
|
@@ -2691,6 +2869,7 @@ export namespace ProtocolMapping {
|
|
2691
2869
|
/**
|
2692
2870
|
* Returns the target anchor element of the given anchor query according to
|
2693
2871
|
* https://www.w3.org/TR/css-anchor-position-1/#target.
|
2872
|
+
* @experimental
|
2694
2873
|
*/
|
2695
2874
|
'DOM.getAnchorElement': {
|
2696
2875
|
paramsType: [Protocol.DOM.GetAnchorElementRequest];
|
@@ -2699,6 +2878,7 @@ export namespace ProtocolMapping {
|
|
2699
2878
|
/**
|
2700
2879
|
* When enabling, this API force-opens the popover identified by nodeId
|
2701
2880
|
* and keeps it open until disabled.
|
2881
|
+
* @experimental
|
2702
2882
|
*/
|
2703
2883
|
'DOM.forceShowPopover': {
|
2704
2884
|
paramsType: [Protocol.DOM.ForceShowPopoverRequest];
|
@@ -2727,6 +2907,8 @@ export namespace ProtocolMapping {
|
|
2727
2907
|
};
|
2728
2908
|
/**
|
2729
2909
|
* Removes breakpoint on particular native event.
|
2910
|
+
* @deprecated
|
2911
|
+
* @experimental
|
2730
2912
|
*/
|
2731
2913
|
'DOMDebugger.removeInstrumentationBreakpoint': {
|
2732
2914
|
paramsType: [Protocol.DOMDebugger.RemoveInstrumentationBreakpointRequest];
|
@@ -2741,6 +2923,7 @@ export namespace ProtocolMapping {
|
|
2741
2923
|
};
|
2742
2924
|
/**
|
2743
2925
|
* Sets breakpoint on particular CSP violations.
|
2926
|
+
* @experimental
|
2744
2927
|
*/
|
2745
2928
|
'DOMDebugger.setBreakOnCSPViolation': {
|
2746
2929
|
paramsType: [Protocol.DOMDebugger.SetBreakOnCSPViolationRequest];
|
@@ -2762,6 +2945,8 @@ export namespace ProtocolMapping {
|
|
2762
2945
|
};
|
2763
2946
|
/**
|
2764
2947
|
* Sets breakpoint on particular native event.
|
2948
|
+
* @deprecated
|
2949
|
+
* @experimental
|
2765
2950
|
*/
|
2766
2951
|
'DOMDebugger.setInstrumentationBreakpoint': {
|
2767
2952
|
paramsType: [Protocol.DOMDebugger.SetInstrumentationBreakpointRequest];
|
@@ -2793,6 +2978,7 @@ export namespace ProtocolMapping {
|
|
2793
2978
|
* template contents, and imported documents) in a flattened array, as well as layout and
|
2794
2979
|
* white-listed computed style information for the nodes. Shadow DOM in the returned DOM tree is
|
2795
2980
|
* flattened.
|
2981
|
+
* @deprecated
|
2796
2982
|
*/
|
2797
2983
|
'DOMSnapshot.getSnapshot': {
|
2798
2984
|
paramsType: [Protocol.DOMSnapshot.GetSnapshotRequest];
|
@@ -2882,6 +3068,7 @@ export namespace ProtocolMapping {
|
|
2882
3068
|
};
|
2883
3069
|
/**
|
2884
3070
|
* Tells whether emulation is supported.
|
3071
|
+
* @deprecated
|
2885
3072
|
*/
|
2886
3073
|
'Emulation.canEmulate': {
|
2887
3074
|
paramsType: [];
|
@@ -2903,6 +3090,7 @@ export namespace ProtocolMapping {
|
|
2903
3090
|
};
|
2904
3091
|
/**
|
2905
3092
|
* Requests that page scale factor is reset to initial values.
|
3093
|
+
* @experimental
|
2906
3094
|
*/
|
2907
3095
|
'Emulation.resetPageScaleFactor': {
|
2908
3096
|
paramsType: [];
|
@@ -2910,6 +3098,7 @@ export namespace ProtocolMapping {
|
|
2910
3098
|
};
|
2911
3099
|
/**
|
2912
3100
|
* Enables or disables simulating a focused and active page.
|
3101
|
+
* @experimental
|
2913
3102
|
*/
|
2914
3103
|
'Emulation.setFocusEmulationEnabled': {
|
2915
3104
|
paramsType: [Protocol.Emulation.SetFocusEmulationEnabledRequest];
|
@@ -2917,6 +3106,7 @@ export namespace ProtocolMapping {
|
|
2917
3106
|
};
|
2918
3107
|
/**
|
2919
3108
|
* Automatically render all web contents using a dark theme.
|
3109
|
+
* @experimental
|
2920
3110
|
*/
|
2921
3111
|
'Emulation.setAutoDarkModeOverride': {
|
2922
3112
|
paramsType: [Protocol.Emulation.SetAutoDarkModeOverrideRequest?];
|
@@ -2940,6 +3130,7 @@ export namespace ProtocolMapping {
|
|
2940
3130
|
/**
|
2941
3131
|
* Overrides the values for env(safe-area-inset-*) and env(safe-area-max-inset-*). Unset values will cause the
|
2942
3132
|
* respective variables to be undefined, even if previously overridden.
|
3133
|
+
* @experimental
|
2943
3134
|
*/
|
2944
3135
|
'Emulation.setSafeAreaInsetsOverride': {
|
2945
3136
|
paramsType: [Protocol.Emulation.SetSafeAreaInsetsOverrideRequest];
|
@@ -2957,6 +3148,7 @@ export namespace ProtocolMapping {
|
|
2957
3148
|
/**
|
2958
3149
|
* Start reporting the given posture value to the Device Posture API.
|
2959
3150
|
* This override can also be set in setDeviceMetricsOverride().
|
3151
|
+
* @experimental
|
2960
3152
|
*/
|
2961
3153
|
'Emulation.setDevicePostureOverride': {
|
2962
3154
|
paramsType: [Protocol.Emulation.SetDevicePostureOverrideRequest];
|
@@ -2967,6 +3159,7 @@ export namespace ProtocolMapping {
|
|
2967
3159
|
* or setDevicePostureOverride() and starts using posture information from the
|
2968
3160
|
* platform again.
|
2969
3161
|
* Does nothing if no override is set.
|
3162
|
+
* @experimental
|
2970
3163
|
*/
|
2971
3164
|
'Emulation.clearDevicePostureOverride': {
|
2972
3165
|
paramsType: [];
|
@@ -2975,6 +3168,7 @@ export namespace ProtocolMapping {
|
|
2975
3168
|
/**
|
2976
3169
|
* Start using the given display features to pupulate the Viewport Segments API.
|
2977
3170
|
* This override can also be set in setDeviceMetricsOverride().
|
3171
|
+
* @experimental
|
2978
3172
|
*/
|
2979
3173
|
'Emulation.setDisplayFeaturesOverride': {
|
2980
3174
|
paramsType: [Protocol.Emulation.SetDisplayFeaturesOverrideRequest];
|
@@ -2985,19 +3179,29 @@ export namespace ProtocolMapping {
|
|
2985
3179
|
* or setDisplayFeaturesOverride() and starts using display features from the
|
2986
3180
|
* platform again.
|
2987
3181
|
* Does nothing if no override is set.
|
3182
|
+
* @experimental
|
2988
3183
|
*/
|
2989
3184
|
'Emulation.clearDisplayFeaturesOverride': {
|
2990
3185
|
paramsType: [];
|
2991
3186
|
returnType: void;
|
2992
3187
|
};
|
3188
|
+
/**
|
3189
|
+
* @experimental
|
3190
|
+
*/
|
2993
3191
|
'Emulation.setScrollbarsHidden': {
|
2994
3192
|
paramsType: [Protocol.Emulation.SetScrollbarsHiddenRequest];
|
2995
3193
|
returnType: void;
|
2996
3194
|
};
|
3195
|
+
/**
|
3196
|
+
* @experimental
|
3197
|
+
*/
|
2997
3198
|
'Emulation.setDocumentCookieDisabled': {
|
2998
3199
|
paramsType: [Protocol.Emulation.SetDocumentCookieDisabledRequest];
|
2999
3200
|
returnType: void;
|
3000
3201
|
};
|
3202
|
+
/**
|
3203
|
+
* @experimental
|
3204
|
+
*/
|
3001
3205
|
'Emulation.setEmitTouchEventsForMouse': {
|
3002
3206
|
paramsType: [Protocol.Emulation.SetEmitTouchEventsForMouseRequest];
|
3003
3207
|
returnType: void;
|
@@ -3031,6 +3235,9 @@ export namespace ProtocolMapping {
|
|
3031
3235
|
paramsType: [Protocol.Emulation.SetGeolocationOverrideRequest?];
|
3032
3236
|
returnType: void;
|
3033
3237
|
};
|
3238
|
+
/**
|
3239
|
+
* @experimental
|
3240
|
+
*/
|
3034
3241
|
'Emulation.getOverriddenSensorInformation': {
|
3035
3242
|
paramsType: [Protocol.Emulation.GetOverriddenSensorInformationRequest];
|
3036
3243
|
returnType: Protocol.Emulation.GetOverriddenSensorInformationResponse;
|
@@ -3041,6 +3248,7 @@ export namespace ProtocolMapping {
|
|
3041
3248
|
* data from a real hardware sensor. Otherwise, existing virtual
|
3042
3249
|
* sensor-backend Sensor objects will fire an error event and new calls to
|
3043
3250
|
* Sensor.start() will attempt to use a real sensor instead.
|
3251
|
+
* @experimental
|
3044
3252
|
*/
|
3045
3253
|
'Emulation.setSensorOverrideEnabled': {
|
3046
3254
|
paramsType: [Protocol.Emulation.SetSensorOverrideEnabledRequest];
|
@@ -3049,6 +3257,7 @@ export namespace ProtocolMapping {
|
|
3049
3257
|
/**
|
3050
3258
|
* Updates the sensor readings reported by a sensor type previously overridden
|
3051
3259
|
* by setSensorOverrideEnabled.
|
3260
|
+
* @experimental
|
3052
3261
|
*/
|
3053
3262
|
'Emulation.setSensorOverrideReadings': {
|
3054
3263
|
paramsType: [Protocol.Emulation.SetSensorOverrideReadingsRequest];
|
@@ -3059,6 +3268,7 @@ export namespace ProtocolMapping {
|
|
3059
3268
|
* Pressure API, so that updates to PressureObserver.observe() are provided
|
3060
3269
|
* via setPressureStateOverride instead of being retrieved from
|
3061
3270
|
* platform-provided telemetry data.
|
3271
|
+
* @experimental
|
3062
3272
|
*/
|
3063
3273
|
'Emulation.setPressureSourceOverrideEnabled': {
|
3064
3274
|
paramsType: [Protocol.Emulation.SetPressureSourceOverrideEnabledRequest];
|
@@ -3069,6 +3279,7 @@ export namespace ProtocolMapping {
|
|
3069
3279
|
* Provides a given pressure state that will be processed and eventually be
|
3070
3280
|
* delivered to PressureObserver users. |source| must have been previously
|
3071
3281
|
* overridden by setPressureSourceOverrideEnabled.
|
3282
|
+
* @experimental
|
3072
3283
|
*/
|
3073
3284
|
'Emulation.setPressureStateOverride': {
|
3074
3285
|
paramsType: [Protocol.Emulation.SetPressureStateOverrideRequest];
|
@@ -3078,6 +3289,7 @@ export namespace ProtocolMapping {
|
|
3078
3289
|
* Provides a given pressure data set that will be processed and eventually be
|
3079
3290
|
* delivered to PressureObserver users. |source| must have been previously
|
3080
3291
|
* overridden by setPressureSourceOverrideEnabled.
|
3292
|
+
* @experimental
|
3081
3293
|
*/
|
3082
3294
|
'Emulation.setPressureDataOverride': {
|
3083
3295
|
paramsType: [Protocol.Emulation.SetPressureDataOverrideRequest];
|
@@ -3099,6 +3311,8 @@ export namespace ProtocolMapping {
|
|
3099
3311
|
};
|
3100
3312
|
/**
|
3101
3313
|
* Overrides value returned by the javascript navigator object.
|
3314
|
+
* @deprecated
|
3315
|
+
* @experimental
|
3102
3316
|
*/
|
3103
3317
|
'Emulation.setNavigatorOverrides': {
|
3104
3318
|
paramsType: [Protocol.Emulation.SetNavigatorOverridesRequest];
|
@@ -3106,6 +3320,7 @@ export namespace ProtocolMapping {
|
|
3106
3320
|
};
|
3107
3321
|
/**
|
3108
3322
|
* Sets a specified page scale factor.
|
3323
|
+
* @experimental
|
3109
3324
|
*/
|
3110
3325
|
'Emulation.setPageScaleFactor': {
|
3111
3326
|
paramsType: [Protocol.Emulation.SetPageScaleFactorRequest];
|
@@ -3128,6 +3343,7 @@ export namespace ProtocolMapping {
|
|
3128
3343
|
/**
|
3129
3344
|
* Turns on virtual time for all frames (replacing real-time with a synthetic time source) and sets
|
3130
3345
|
* the current virtual time policy. Note this supersedes any previous time budget.
|
3346
|
+
* @experimental
|
3131
3347
|
*/
|
3132
3348
|
'Emulation.setVirtualTimePolicy': {
|
3133
3349
|
paramsType: [Protocol.Emulation.SetVirtualTimePolicyRequest];
|
@@ -3135,6 +3351,7 @@ export namespace ProtocolMapping {
|
|
3135
3351
|
};
|
3136
3352
|
/**
|
3137
3353
|
* Overrides default host system locale with the specified one.
|
3354
|
+
* @experimental
|
3138
3355
|
*/
|
3139
3356
|
'Emulation.setLocaleOverride': {
|
3140
3357
|
paramsType: [Protocol.Emulation.SetLocaleOverrideRequest?];
|
@@ -3151,22 +3368,31 @@ export namespace ProtocolMapping {
|
|
3151
3368
|
* Resizes the frame/viewport of the page. Note that this does not affect the frame's container
|
3152
3369
|
* (e.g. browser window). Can be used to produce screenshots of the specified size. Not supported
|
3153
3370
|
* on Android.
|
3371
|
+
* @deprecated
|
3372
|
+
* @experimental
|
3154
3373
|
*/
|
3155
3374
|
'Emulation.setVisibleSize': {
|
3156
3375
|
paramsType: [Protocol.Emulation.SetVisibleSizeRequest];
|
3157
3376
|
returnType: void;
|
3158
3377
|
};
|
3378
|
+
/**
|
3379
|
+
* @experimental
|
3380
|
+
*/
|
3159
3381
|
'Emulation.setDisabledImageTypes': {
|
3160
3382
|
paramsType: [Protocol.Emulation.SetDisabledImageTypesRequest];
|
3161
3383
|
returnType: void;
|
3162
3384
|
};
|
3163
3385
|
/**
|
3164
3386
|
* Override the value of navigator.connection.saveData
|
3387
|
+
* @experimental
|
3165
3388
|
*/
|
3166
3389
|
'Emulation.setDataSaverOverride': {
|
3167
3390
|
paramsType: [Protocol.Emulation.SetDataSaverOverrideRequest?];
|
3168
3391
|
returnType: void;
|
3169
3392
|
};
|
3393
|
+
/**
|
3394
|
+
* @experimental
|
3395
|
+
*/
|
3170
3396
|
'Emulation.setHardwareConcurrencyOverride': {
|
3171
3397
|
paramsType: [Protocol.Emulation.SetHardwareConcurrencyOverrideRequest];
|
3172
3398
|
returnType: void;
|
@@ -3181,6 +3407,7 @@ export namespace ProtocolMapping {
|
|
3181
3407
|
};
|
3182
3408
|
/**
|
3183
3409
|
* Allows overriding the automation flag.
|
3410
|
+
* @experimental
|
3184
3411
|
*/
|
3185
3412
|
'Emulation.setAutomationOverride': {
|
3186
3413
|
paramsType: [Protocol.Emulation.SetAutomationOverrideRequest];
|
@@ -3189,6 +3416,7 @@ export namespace ProtocolMapping {
|
|
3189
3416
|
/**
|
3190
3417
|
* Allows overriding the difference between the small and large viewport sizes, which determine the
|
3191
3418
|
* value of the `svh` and `lvh` unit, respectively. Only supported for top-level frames.
|
3419
|
+
* @experimental
|
3192
3420
|
*/
|
3193
3421
|
'Emulation.setSmallViewportHeightDifferenceOverride': {
|
3194
3422
|
paramsType: [Protocol.Emulation.SetSmallViewportHeightDifferenceOverrideRequest];
|
@@ -3196,6 +3424,7 @@ export namespace ProtocolMapping {
|
|
3196
3424
|
};
|
3197
3425
|
/**
|
3198
3426
|
* Returns device's screen configuration.
|
3427
|
+
* @experimental
|
3199
3428
|
*/
|
3200
3429
|
'Emulation.getScreenInfos': {
|
3201
3430
|
paramsType: [];
|
@@ -3203,6 +3432,7 @@ export namespace ProtocolMapping {
|
|
3203
3432
|
};
|
3204
3433
|
/**
|
3205
3434
|
* Add a new screen to the device. Only supported in headless mode.
|
3435
|
+
* @experimental
|
3206
3436
|
*/
|
3207
3437
|
'Emulation.addScreen': {
|
3208
3438
|
paramsType: [Protocol.Emulation.AddScreenRequest];
|
@@ -3210,6 +3440,7 @@ export namespace ProtocolMapping {
|
|
3210
3440
|
};
|
3211
3441
|
/**
|
3212
3442
|
* Remove screen from the device. Only supported in headless mode.
|
3443
|
+
* @experimental
|
3213
3444
|
*/
|
3214
3445
|
'Emulation.removeScreen': {
|
3215
3446
|
paramsType: [Protocol.Emulation.RemoveScreenRequest];
|
@@ -3365,6 +3596,7 @@ export namespace ProtocolMapping {
|
|
3365
3596
|
* Continues loading of the paused response, optionally modifying the
|
3366
3597
|
* response headers. If either responseCode or headers are modified, all of them
|
3367
3598
|
* must be present.
|
3599
|
+
* @experimental
|
3368
3600
|
*/
|
3369
3601
|
'Fetch.continueResponse': {
|
3370
3602
|
paramsType: [Protocol.Fetch.ContinueResponseRequest];
|
@@ -3418,6 +3650,7 @@ export namespace ProtocolMapping {
|
|
3418
3650
|
};
|
3419
3651
|
/**
|
3420
3652
|
* Disables headless events for the target.
|
3653
|
+
* @deprecated
|
3421
3654
|
*/
|
3422
3655
|
'HeadlessExperimental.disable': {
|
3423
3656
|
paramsType: [];
|
@@ -3425,6 +3658,7 @@ export namespace ProtocolMapping {
|
|
3425
3658
|
};
|
3426
3659
|
/**
|
3427
3660
|
* Enables headless events for the target.
|
3661
|
+
* @deprecated
|
3428
3662
|
*/
|
3429
3663
|
'HeadlessExperimental.enable': {
|
3430
3664
|
paramsType: [];
|
@@ -3516,6 +3750,7 @@ export namespace ProtocolMapping {
|
|
3516
3750
|
};
|
3517
3751
|
/**
|
3518
3752
|
* Dispatches a drag event into the page.
|
3753
|
+
* @experimental
|
3519
3754
|
*/
|
3520
3755
|
'Input.dispatchDragEvent': {
|
3521
3756
|
paramsType: [Protocol.Input.DispatchDragEventRequest];
|
@@ -3531,6 +3766,7 @@ export namespace ProtocolMapping {
|
|
3531
3766
|
/**
|
3532
3767
|
* This method emulates inserting text that doesn't come from a key press,
|
3533
3768
|
* for example an emoji keyboard or an IME.
|
3769
|
+
* @experimental
|
3534
3770
|
*/
|
3535
3771
|
'Input.insertText': {
|
3536
3772
|
paramsType: [Protocol.Input.InsertTextRequest];
|
@@ -3540,6 +3776,7 @@ export namespace ProtocolMapping {
|
|
3540
3776
|
* This method sets the current candidate text for IME.
|
3541
3777
|
* Use imeCommitComposition to commit the final text.
|
3542
3778
|
* Use imeSetComposition with empty string as text to cancel composition.
|
3779
|
+
* @experimental
|
3543
3780
|
*/
|
3544
3781
|
'Input.imeSetComposition': {
|
3545
3782
|
paramsType: [Protocol.Input.ImeSetCompositionRequest];
|
@@ -3568,6 +3805,7 @@ export namespace ProtocolMapping {
|
|
3568
3805
|
};
|
3569
3806
|
/**
|
3570
3807
|
* Emulates touch event from the mouse event parameters.
|
3808
|
+
* @experimental
|
3571
3809
|
*/
|
3572
3810
|
'Input.emulateTouchFromMouseEvent': {
|
3573
3811
|
paramsType: [Protocol.Input.EmulateTouchFromMouseEventRequest];
|
@@ -3583,6 +3821,7 @@ export namespace ProtocolMapping {
|
|
3583
3821
|
/**
|
3584
3822
|
* Prevents default drag and drop behavior and instead emits `Input.dragIntercepted` events.
|
3585
3823
|
* Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`.
|
3824
|
+
* @experimental
|
3586
3825
|
*/
|
3587
3826
|
'Input.setInterceptDrags': {
|
3588
3827
|
paramsType: [Protocol.Input.SetInterceptDragsRequest];
|
@@ -3590,6 +3829,7 @@ export namespace ProtocolMapping {
|
|
3590
3829
|
};
|
3591
3830
|
/**
|
3592
3831
|
* Synthesizes a pinch gesture over a time period by issuing appropriate touch events.
|
3832
|
+
* @experimental
|
3593
3833
|
*/
|
3594
3834
|
'Input.synthesizePinchGesture': {
|
3595
3835
|
paramsType: [Protocol.Input.SynthesizePinchGestureRequest];
|
@@ -3597,6 +3837,7 @@ export namespace ProtocolMapping {
|
|
3597
3837
|
};
|
3598
3838
|
/**
|
3599
3839
|
* Synthesizes a scroll gesture over a time period by issuing appropriate touch events.
|
3840
|
+
* @experimental
|
3600
3841
|
*/
|
3601
3842
|
'Input.synthesizeScrollGesture': {
|
3602
3843
|
paramsType: [Protocol.Input.SynthesizeScrollGestureRequest];
|
@@ -3604,6 +3845,7 @@ export namespace ProtocolMapping {
|
|
3604
3845
|
};
|
3605
3846
|
/**
|
3606
3847
|
* Synthesizes a tap gesture over a time period by issuing appropriate touch events.
|
3848
|
+
* @experimental
|
3607
3849
|
*/
|
3608
3850
|
'Input.synthesizeTapGesture': {
|
3609
3851
|
paramsType: [Protocol.Input.SynthesizeTapGestureRequest];
|
@@ -3816,6 +4058,7 @@ export namespace ProtocolMapping {
|
|
3816
4058
|
};
|
3817
4059
|
/**
|
3818
4060
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
4061
|
+
* @experimental
|
3819
4062
|
*/
|
3820
4063
|
'Network.setAcceptedEncodings': {
|
3821
4064
|
paramsType: [Protocol.Network.SetAcceptedEncodingsRequest];
|
@@ -3823,6 +4066,7 @@ export namespace ProtocolMapping {
|
|
3823
4066
|
};
|
3824
4067
|
/**
|
3825
4068
|
* Clears accepted encodings set by setAcceptedEncodings
|
4069
|
+
* @experimental
|
3826
4070
|
*/
|
3827
4071
|
'Network.clearAcceptedEncodingsOverride': {
|
3828
4072
|
paramsType: [];
|
@@ -3830,6 +4074,7 @@ export namespace ProtocolMapping {
|
|
3830
4074
|
};
|
3831
4075
|
/**
|
3832
4076
|
* Tells whether clearing browser cache is supported.
|
4077
|
+
* @deprecated
|
3833
4078
|
*/
|
3834
4079
|
'Network.canClearBrowserCache': {
|
3835
4080
|
paramsType: [];
|
@@ -3837,6 +4082,7 @@ export namespace ProtocolMapping {
|
|
3837
4082
|
};
|
3838
4083
|
/**
|
3839
4084
|
* Tells whether clearing browser cookies is supported.
|
4085
|
+
* @deprecated
|
3840
4086
|
*/
|
3841
4087
|
'Network.canClearBrowserCookies': {
|
3842
4088
|
paramsType: [];
|
@@ -3844,6 +4090,7 @@ export namespace ProtocolMapping {
|
|
3844
4090
|
};
|
3845
4091
|
/**
|
3846
4092
|
* Tells whether emulation of network conditions is supported.
|
4093
|
+
* @deprecated
|
3847
4094
|
*/
|
3848
4095
|
'Network.canEmulateNetworkConditions': {
|
3849
4096
|
paramsType: [];
|
@@ -3869,6 +4116,8 @@ export namespace ProtocolMapping {
|
|
3869
4116
|
* fetch occurs as a result which encounters a redirect an additional Network.requestIntercepted
|
3870
4117
|
* event will be sent with the same InterceptionId.
|
3871
4118
|
* Deprecated, use Fetch.continueRequest, Fetch.fulfillRequest and Fetch.failRequest instead.
|
4119
|
+
* @deprecated
|
4120
|
+
* @experimental
|
3872
4121
|
*/
|
3873
4122
|
'Network.continueInterceptedRequest': {
|
3874
4123
|
paramsType: [Protocol.Network.ContinueInterceptedRequestRequest];
|
@@ -3906,6 +4155,7 @@ export namespace ProtocolMapping {
|
|
3906
4155
|
* Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
3907
4156
|
* information in the `cookies` field.
|
3908
4157
|
* Deprecated. Use Storage.getCookies instead.
|
4158
|
+
* @deprecated
|
3909
4159
|
*/
|
3910
4160
|
'Network.getAllCookies': {
|
3911
4161
|
paramsType: [];
|
@@ -3913,6 +4163,7 @@ export namespace ProtocolMapping {
|
|
3913
4163
|
};
|
3914
4164
|
/**
|
3915
4165
|
* Returns the DER-encoded certificate.
|
4166
|
+
* @experimental
|
3916
4167
|
*/
|
3917
4168
|
'Network.getCertificate': {
|
3918
4169
|
paramsType: [Protocol.Network.GetCertificateRequest];
|
@@ -3942,6 +4193,7 @@ export namespace ProtocolMapping {
|
|
3942
4193
|
};
|
3943
4194
|
/**
|
3944
4195
|
* Returns content served for the given currently intercepted request.
|
4196
|
+
* @experimental
|
3945
4197
|
*/
|
3946
4198
|
'Network.getResponseBodyForInterception': {
|
3947
4199
|
paramsType: [Protocol.Network.GetResponseBodyForInterceptionRequest];
|
@@ -3952,6 +4204,7 @@ export namespace ProtocolMapping {
|
|
3952
4204
|
* the intercepted request can't be continued as is -- you either need to cancel it or to provide
|
3953
4205
|
* the response body. The stream only supports sequential read, IO.read will fail if the position
|
3954
4206
|
* is specified.
|
4207
|
+
* @experimental
|
3955
4208
|
*/
|
3956
4209
|
'Network.takeResponseBodyForInterceptionAsStream': {
|
3957
4210
|
paramsType: [Protocol.Network.TakeResponseBodyForInterceptionAsStreamRequest];
|
@@ -3961,6 +4214,7 @@ export namespace ProtocolMapping {
|
|
3961
4214
|
* This method sends a new XMLHttpRequest which is identical to the original one. The following
|
3962
4215
|
* parameters should be identical: method, url, async, request body, extra headers, withCredentials
|
3963
4216
|
* attribute, user, password.
|
4217
|
+
* @experimental
|
3964
4218
|
*/
|
3965
4219
|
'Network.replayXHR': {
|
3966
4220
|
paramsType: [Protocol.Network.ReplayXHRRequest];
|
@@ -3968,6 +4222,7 @@ export namespace ProtocolMapping {
|
|
3968
4222
|
};
|
3969
4223
|
/**
|
3970
4224
|
* Searches for given string in response content.
|
4225
|
+
* @experimental
|
3971
4226
|
*/
|
3972
4227
|
'Network.searchInResponseBody': {
|
3973
4228
|
paramsType: [Protocol.Network.SearchInResponseBodyRequest];
|
@@ -3975,6 +4230,7 @@ export namespace ProtocolMapping {
|
|
3975
4230
|
};
|
3976
4231
|
/**
|
3977
4232
|
* Blocks URLs from loading.
|
4233
|
+
* @experimental
|
3978
4234
|
*/
|
3979
4235
|
'Network.setBlockedURLs': {
|
3980
4236
|
paramsType: [Protocol.Network.SetBlockedURLsRequest];
|
@@ -4017,6 +4273,7 @@ export namespace ProtocolMapping {
|
|
4017
4273
|
};
|
4018
4274
|
/**
|
4019
4275
|
* Specifies whether to attach a page script stack id in requests
|
4276
|
+
* @experimental
|
4020
4277
|
*/
|
4021
4278
|
'Network.setAttachDebugStack': {
|
4022
4279
|
paramsType: [Protocol.Network.SetAttachDebugStackRequest];
|
@@ -4025,6 +4282,8 @@ export namespace ProtocolMapping {
|
|
4025
4282
|
/**
|
4026
4283
|
* Sets the requests to intercept that match the provided patterns and optionally resource types.
|
4027
4284
|
* Deprecated, please use Fetch.enable instead.
|
4285
|
+
* @deprecated
|
4286
|
+
* @experimental
|
4028
4287
|
*/
|
4029
4288
|
'Network.setRequestInterception': {
|
4030
4289
|
paramsType: [Protocol.Network.SetRequestInterceptionRequest];
|
@@ -4040,6 +4299,7 @@ export namespace ProtocolMapping {
|
|
4040
4299
|
/**
|
4041
4300
|
* Enables streaming of the response for the given requestId.
|
4042
4301
|
* If enabled, the dataReceived event contains the data that was received during streaming.
|
4302
|
+
* @experimental
|
4043
4303
|
*/
|
4044
4304
|
'Network.streamResourceContent': {
|
4045
4305
|
paramsType: [Protocol.Network.StreamResourceContentRequest];
|
@@ -4047,6 +4307,7 @@ export namespace ProtocolMapping {
|
|
4047
4307
|
};
|
4048
4308
|
/**
|
4049
4309
|
* Returns information about the COEP/COOP isolation status.
|
4310
|
+
* @experimental
|
4050
4311
|
*/
|
4051
4312
|
'Network.getSecurityIsolationStatus': {
|
4052
4313
|
paramsType: [Protocol.Network.GetSecurityIsolationStatusRequest?];
|
@@ -4055,6 +4316,7 @@ export namespace ProtocolMapping {
|
|
4055
4316
|
/**
|
4056
4317
|
* Enables tracking for the Reporting API, events generated by the Reporting API will now be delivered to the client.
|
4057
4318
|
* Enabling triggers 'reportingApiReportAdded' for all existing reports.
|
4319
|
+
* @experimental
|
4058
4320
|
*/
|
4059
4321
|
'Network.enableReportingApi': {
|
4060
4322
|
paramsType: [Protocol.Network.EnableReportingApiRequest];
|
@@ -4062,6 +4324,7 @@ export namespace ProtocolMapping {
|
|
4062
4324
|
};
|
4063
4325
|
/**
|
4064
4326
|
* Fetches the resource and returns the content.
|
4327
|
+
* @experimental
|
4065
4328
|
*/
|
4066
4329
|
'Network.loadNetworkResource': {
|
4067
4330
|
paramsType: [Protocol.Network.LoadNetworkResourceRequest];
|
@@ -4070,6 +4333,7 @@ export namespace ProtocolMapping {
|
|
4070
4333
|
/**
|
4071
4334
|
* Sets Controls for third-party cookie access
|
4072
4335
|
* Page reload is required before the new cookie behavior will be observed
|
4336
|
+
* @experimental
|
4073
4337
|
*/
|
4074
4338
|
'Network.setCookieControls': {
|
4075
4339
|
paramsType: [Protocol.Network.SetCookieControlsRequest];
|
@@ -4122,6 +4386,7 @@ export namespace ProtocolMapping {
|
|
4122
4386
|
* Deprecated: Doesn't work reliably and cannot be fixed due to process
|
4123
4387
|
* separation (the owner node might be in a different process). Determine
|
4124
4388
|
* the owner node in the client and use highlightNode.
|
4389
|
+
* @deprecated
|
4125
4390
|
*/
|
4126
4391
|
'Overlay.highlightFrame': {
|
4127
4392
|
paramsType: [Protocol.Overlay.HighlightFrameRequest];
|
@@ -4235,6 +4500,7 @@ export namespace ProtocolMapping {
|
|
4235
4500
|
};
|
4236
4501
|
/**
|
4237
4502
|
* Deprecated, no longer has any effect.
|
4503
|
+
* @deprecated
|
4238
4504
|
*/
|
4239
4505
|
'Overlay.setShowHitTestBorders': {
|
4240
4506
|
paramsType: [Protocol.Overlay.SetShowHitTestBordersRequest];
|
@@ -4242,6 +4508,7 @@ export namespace ProtocolMapping {
|
|
4242
4508
|
};
|
4243
4509
|
/**
|
4244
4510
|
* Deprecated, no longer has any effect.
|
4511
|
+
* @deprecated
|
4245
4512
|
*/
|
4246
4513
|
'Overlay.setShowWebVitals': {
|
4247
4514
|
paramsType: [Protocol.Overlay.SetShowWebVitalsRequest];
|
@@ -4374,6 +4641,8 @@ export namespace ProtocolMapping {
|
|
4374
4641
|
};
|
4375
4642
|
/**
|
4376
4643
|
* Deprecated, please use addScriptToEvaluateOnNewDocument instead.
|
4644
|
+
* @deprecated
|
4645
|
+
* @experimental
|
4377
4646
|
*/
|
4378
4647
|
'Page.addScriptToEvaluateOnLoad': {
|
4379
4648
|
paramsType: [Protocol.Page.AddScriptToEvaluateOnLoadRequest];
|
@@ -4403,6 +4672,7 @@ export namespace ProtocolMapping {
|
|
4403
4672
|
/**
|
4404
4673
|
* Returns a snapshot of the page as a string. For MHTML format, the serialization includes
|
4405
4674
|
* iframes, shadow DOM, external resources, and element-inline styles.
|
4675
|
+
* @experimental
|
4406
4676
|
*/
|
4407
4677
|
'Page.captureSnapshot': {
|
4408
4678
|
paramsType: [Protocol.Page.CaptureSnapshotRequest?];
|
@@ -4410,6 +4680,8 @@ export namespace ProtocolMapping {
|
|
4410
4680
|
};
|
4411
4681
|
/**
|
4412
4682
|
* Clears the overridden device metrics.
|
4683
|
+
* @deprecated
|
4684
|
+
* @experimental
|
4413
4685
|
*/
|
4414
4686
|
'Page.clearDeviceMetricsOverride': {
|
4415
4687
|
paramsType: [];
|
@@ -4417,6 +4689,8 @@ export namespace ProtocolMapping {
|
|
4417
4689
|
};
|
4418
4690
|
/**
|
4419
4691
|
* Clears the overridden Device Orientation.
|
4692
|
+
* @deprecated
|
4693
|
+
* @experimental
|
4420
4694
|
*/
|
4421
4695
|
'Page.clearDeviceOrientationOverride': {
|
4422
4696
|
paramsType: [];
|
@@ -4424,6 +4698,7 @@ export namespace ProtocolMapping {
|
|
4424
4698
|
};
|
4425
4699
|
/**
|
4426
4700
|
* Clears the overridden Geolocation Position and Error.
|
4701
|
+
* @deprecated
|
4427
4702
|
*/
|
4428
4703
|
'Page.clearGeolocationOverride': {
|
4429
4704
|
paramsType: [];
|
@@ -4438,6 +4713,8 @@ export namespace ProtocolMapping {
|
|
4438
4713
|
};
|
4439
4714
|
/**
|
4440
4715
|
* Deletes browser cookie with given name, domain and path.
|
4716
|
+
* @deprecated
|
4717
|
+
* @experimental
|
4441
4718
|
*/
|
4442
4719
|
'Page.deleteCookie': {
|
4443
4720
|
paramsType: [Protocol.Page.DeleteCookieRequest];
|
@@ -4468,12 +4745,17 @@ export namespace ProtocolMapping {
|
|
4468
4745
|
paramsType: [Protocol.Page.GetAppManifestRequest?];
|
4469
4746
|
returnType: Protocol.Page.GetAppManifestResponse;
|
4470
4747
|
};
|
4748
|
+
/**
|
4749
|
+
* @experimental
|
4750
|
+
*/
|
4471
4751
|
'Page.getInstallabilityErrors': {
|
4472
4752
|
paramsType: [];
|
4473
4753
|
returnType: Protocol.Page.GetInstallabilityErrorsResponse;
|
4474
4754
|
};
|
4475
4755
|
/**
|
4476
4756
|
* Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
|
4757
|
+
* @deprecated
|
4758
|
+
* @experimental
|
4477
4759
|
*/
|
4478
4760
|
'Page.getManifestIcons': {
|
4479
4761
|
paramsType: [];
|
@@ -4482,11 +4764,15 @@ export namespace ProtocolMapping {
|
|
4482
4764
|
/**
|
4483
4765
|
* Returns the unique (PWA) app id.
|
4484
4766
|
* Only returns values if the feature flag 'WebAppEnableManifestId' is enabled
|
4767
|
+
* @experimental
|
4485
4768
|
*/
|
4486
4769
|
'Page.getAppId': {
|
4487
4770
|
paramsType: [];
|
4488
4771
|
returnType: Protocol.Page.GetAppIdResponse;
|
4489
4772
|
};
|
4773
|
+
/**
|
4774
|
+
* @experimental
|
4775
|
+
*/
|
4490
4776
|
'Page.getAdScriptAncestry': {
|
4491
4777
|
paramsType: [Protocol.Page.GetAdScriptAncestryRequest];
|
4492
4778
|
returnType: Protocol.Page.GetAdScriptAncestryResponse;
|
@@ -4521,6 +4807,7 @@ export namespace ProtocolMapping {
|
|
4521
4807
|
};
|
4522
4808
|
/**
|
4523
4809
|
* Returns content of the given resource.
|
4810
|
+
* @experimental
|
4524
4811
|
*/
|
4525
4812
|
'Page.getResourceContent': {
|
4526
4813
|
paramsType: [Protocol.Page.GetResourceContentRequest];
|
@@ -4528,6 +4815,7 @@ export namespace ProtocolMapping {
|
|
4528
4815
|
};
|
4529
4816
|
/**
|
4530
4817
|
* Returns present frame / resource tree structure.
|
4818
|
+
* @experimental
|
4531
4819
|
*/
|
4532
4820
|
'Page.getResourceTree': {
|
4533
4821
|
paramsType: [];
|
@@ -4570,6 +4858,8 @@ export namespace ProtocolMapping {
|
|
4570
4858
|
};
|
4571
4859
|
/**
|
4572
4860
|
* Deprecated, please use removeScriptToEvaluateOnNewDocument instead.
|
4861
|
+
* @deprecated
|
4862
|
+
* @experimental
|
4573
4863
|
*/
|
4574
4864
|
'Page.removeScriptToEvaluateOnLoad': {
|
4575
4865
|
paramsType: [Protocol.Page.RemoveScriptToEvaluateOnLoadRequest];
|
@@ -4584,6 +4874,7 @@ export namespace ProtocolMapping {
|
|
4584
4874
|
};
|
4585
4875
|
/**
|
4586
4876
|
* Acknowledges that a screencast frame has been received by the frontend.
|
4877
|
+
* @experimental
|
4587
4878
|
*/
|
4588
4879
|
'Page.screencastFrameAck': {
|
4589
4880
|
paramsType: [Protocol.Page.ScreencastFrameAckRequest];
|
@@ -4591,6 +4882,7 @@ export namespace ProtocolMapping {
|
|
4591
4882
|
};
|
4592
4883
|
/**
|
4593
4884
|
* Searches for given string in resource content.
|
4885
|
+
* @experimental
|
4594
4886
|
*/
|
4595
4887
|
'Page.searchInResource': {
|
4596
4888
|
paramsType: [Protocol.Page.SearchInResourceRequest];
|
@@ -4598,6 +4890,7 @@ export namespace ProtocolMapping {
|
|
4598
4890
|
};
|
4599
4891
|
/**
|
4600
4892
|
* Enable Chrome's experimental ad filter on all sites.
|
4893
|
+
* @experimental
|
4601
4894
|
*/
|
4602
4895
|
'Page.setAdBlockingEnabled': {
|
4603
4896
|
paramsType: [Protocol.Page.SetAdBlockingEnabledRequest];
|
@@ -4612,6 +4905,7 @@ export namespace ProtocolMapping {
|
|
4612
4905
|
};
|
4613
4906
|
/**
|
4614
4907
|
* Get Permissions Policy state on given frame.
|
4908
|
+
* @experimental
|
4615
4909
|
*/
|
4616
4910
|
'Page.getPermissionsPolicyState': {
|
4617
4911
|
paramsType: [Protocol.Page.GetPermissionsPolicyStateRequest];
|
@@ -4619,6 +4913,7 @@ export namespace ProtocolMapping {
|
|
4619
4913
|
};
|
4620
4914
|
/**
|
4621
4915
|
* Get Origin Trials on given frame.
|
4916
|
+
* @experimental
|
4622
4917
|
*/
|
4623
4918
|
'Page.getOriginTrials': {
|
4624
4919
|
paramsType: [Protocol.Page.GetOriginTrialsRequest];
|
@@ -4628,6 +4923,8 @@ export namespace ProtocolMapping {
|
|
4628
4923
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
4629
4924
|
* window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
4630
4925
|
* query results).
|
4926
|
+
* @deprecated
|
4927
|
+
* @experimental
|
4631
4928
|
*/
|
4632
4929
|
'Page.setDeviceMetricsOverride': {
|
4633
4930
|
paramsType: [Protocol.Page.SetDeviceMetricsOverrideRequest];
|
@@ -4635,6 +4932,8 @@ export namespace ProtocolMapping {
|
|
4635
4932
|
};
|
4636
4933
|
/**
|
4637
4934
|
* Overrides the Device Orientation.
|
4935
|
+
* @deprecated
|
4936
|
+
* @experimental
|
4638
4937
|
*/
|
4639
4938
|
'Page.setDeviceOrientationOverride': {
|
4640
4939
|
paramsType: [Protocol.Page.SetDeviceOrientationOverrideRequest];
|
@@ -4642,6 +4941,7 @@ export namespace ProtocolMapping {
|
|
4642
4941
|
};
|
4643
4942
|
/**
|
4644
4943
|
* Set generic font families.
|
4944
|
+
* @experimental
|
4645
4945
|
*/
|
4646
4946
|
'Page.setFontFamilies': {
|
4647
4947
|
paramsType: [Protocol.Page.SetFontFamiliesRequest];
|
@@ -4649,6 +4949,7 @@ export namespace ProtocolMapping {
|
|
4649
4949
|
};
|
4650
4950
|
/**
|
4651
4951
|
* Set default font sizes.
|
4952
|
+
* @experimental
|
4652
4953
|
*/
|
4653
4954
|
'Page.setFontSizes': {
|
4654
4955
|
paramsType: [Protocol.Page.SetFontSizesRequest];
|
@@ -4663,6 +4964,8 @@ export namespace ProtocolMapping {
|
|
4663
4964
|
};
|
4664
4965
|
/**
|
4665
4966
|
* Set the behavior when downloading a file.
|
4967
|
+
* @deprecated
|
4968
|
+
* @experimental
|
4666
4969
|
*/
|
4667
4970
|
'Page.setDownloadBehavior': {
|
4668
4971
|
paramsType: [Protocol.Page.SetDownloadBehaviorRequest];
|
@@ -4671,6 +4974,7 @@ export namespace ProtocolMapping {
|
|
4671
4974
|
/**
|
4672
4975
|
* Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position
|
4673
4976
|
* unavailable.
|
4977
|
+
* @deprecated
|
4674
4978
|
*/
|
4675
4979
|
'Page.setGeolocationOverride': {
|
4676
4980
|
paramsType: [Protocol.Page.SetGeolocationOverrideRequest?];
|
@@ -4685,6 +4989,8 @@ export namespace ProtocolMapping {
|
|
4685
4989
|
};
|
4686
4990
|
/**
|
4687
4991
|
* Toggles mouse event-based touch event emulation.
|
4992
|
+
* @deprecated
|
4993
|
+
* @experimental
|
4688
4994
|
*/
|
4689
4995
|
'Page.setTouchEmulationEnabled': {
|
4690
4996
|
paramsType: [Protocol.Page.SetTouchEmulationEnabledRequest];
|
@@ -4692,6 +4998,7 @@ export namespace ProtocolMapping {
|
|
4692
4998
|
};
|
4693
4999
|
/**
|
4694
5000
|
* Starts sending each frame using the `screencastFrame` event.
|
5001
|
+
* @experimental
|
4695
5002
|
*/
|
4696
5003
|
'Page.startScreencast': {
|
4697
5004
|
paramsType: [Protocol.Page.StartScreencastRequest?];
|
@@ -4706,6 +5013,7 @@ export namespace ProtocolMapping {
|
|
4706
5013
|
};
|
4707
5014
|
/**
|
4708
5015
|
* Crashes renderer on the IO thread, generates minidumps.
|
5016
|
+
* @experimental
|
4709
5017
|
*/
|
4710
5018
|
'Page.crash': {
|
4711
5019
|
paramsType: [];
|
@@ -4722,6 +5030,7 @@ export namespace ProtocolMapping {
|
|
4722
5030
|
* Tries to update the web lifecycle state of the page.
|
4723
5031
|
* It will transition the page to the given state according to:
|
4724
5032
|
* https://github.com/WICG/web-lifecycle/
|
5033
|
+
* @experimental
|
4725
5034
|
*/
|
4726
5035
|
'Page.setWebLifecycleState': {
|
4727
5036
|
paramsType: [Protocol.Page.SetWebLifecycleStateRequest];
|
@@ -4729,6 +5038,7 @@ export namespace ProtocolMapping {
|
|
4729
5038
|
};
|
4730
5039
|
/**
|
4731
5040
|
* Stops sending each frame in the `screencastFrame`.
|
5041
|
+
* @experimental
|
4732
5042
|
*/
|
4733
5043
|
'Page.stopScreencast': {
|
4734
5044
|
paramsType: [];
|
@@ -4741,6 +5051,7 @@ export namespace ProtocolMapping {
|
|
4741
5051
|
* When script with a matching URL is encountered, the cache is optionally
|
4742
5052
|
* produced upon backend discretion, based on internal heuristics.
|
4743
5053
|
* See also: `Page.compilationCacheProduced`.
|
5054
|
+
* @experimental
|
4744
5055
|
*/
|
4745
5056
|
'Page.produceCompilationCache': {
|
4746
5057
|
paramsType: [Protocol.Page.ProduceCompilationCacheRequest];
|
@@ -4749,6 +5060,7 @@ export namespace ProtocolMapping {
|
|
4749
5060
|
/**
|
4750
5061
|
* Seeds compilation cache for given url. Compilation cache does not survive
|
4751
5062
|
* cross-process navigation.
|
5063
|
+
* @experimental
|
4752
5064
|
*/
|
4753
5065
|
'Page.addCompilationCache': {
|
4754
5066
|
paramsType: [Protocol.Page.AddCompilationCacheRequest];
|
@@ -4756,6 +5068,7 @@ export namespace ProtocolMapping {
|
|
4756
5068
|
};
|
4757
5069
|
/**
|
4758
5070
|
* Clears seeded compilation cache.
|
5071
|
+
* @experimental
|
4759
5072
|
*/
|
4760
5073
|
'Page.clearCompilationCache': {
|
4761
5074
|
paramsType: [];
|
@@ -4764,6 +5077,7 @@ export namespace ProtocolMapping {
|
|
4764
5077
|
/**
|
4765
5078
|
* Sets the Secure Payment Confirmation transaction mode.
|
4766
5079
|
* https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode
|
5080
|
+
* @experimental
|
4767
5081
|
*/
|
4768
5082
|
'Page.setSPCTransactionMode': {
|
4769
5083
|
paramsType: [Protocol.Page.SetSPCTransactionModeRequest];
|
@@ -4772,6 +5086,7 @@ export namespace ProtocolMapping {
|
|
4772
5086
|
/**
|
4773
5087
|
* Extensions for Custom Handlers API:
|
4774
5088
|
* https://html.spec.whatwg.org/multipage/system-state.html#rph-automation
|
5089
|
+
* @experimental
|
4775
5090
|
*/
|
4776
5091
|
'Page.setRPHRegistrationMode': {
|
4777
5092
|
paramsType: [Protocol.Page.SetRPHRegistrationModeRequest];
|
@@ -4779,6 +5094,7 @@ export namespace ProtocolMapping {
|
|
4779
5094
|
};
|
4780
5095
|
/**
|
4781
5096
|
* Generates a report for testing.
|
5097
|
+
* @experimental
|
4782
5098
|
*/
|
4783
5099
|
'Page.generateTestReport': {
|
4784
5100
|
paramsType: [Protocol.Page.GenerateTestReportRequest];
|
@@ -4786,6 +5102,7 @@ export namespace ProtocolMapping {
|
|
4786
5102
|
};
|
4787
5103
|
/**
|
4788
5104
|
* Pauses page execution. Can be resumed using generic Runtime.runIfWaitingForDebugger.
|
5105
|
+
* @experimental
|
4789
5106
|
*/
|
4790
5107
|
'Page.waitForDebugger': {
|
4791
5108
|
paramsType: [];
|
@@ -4808,6 +5125,7 @@ export namespace ProtocolMapping {
|
|
4808
5125
|
* for more details.
|
4809
5126
|
*
|
4810
5127
|
* TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets.
|
5128
|
+
* @experimental
|
4811
5129
|
*/
|
4812
5130
|
'Page.setPrerenderingAllowed': {
|
4813
5131
|
paramsType: [Protocol.Page.SetPrerenderingAllowedRequest];
|
@@ -4831,6 +5149,8 @@ export namespace ProtocolMapping {
|
|
4831
5149
|
* Sets time domain to use for collecting and reporting duration metrics.
|
4832
5150
|
* Note that this must be called before enabling metrics collection. Calling
|
4833
5151
|
* this method while metrics collection is enabled returns an error.
|
5152
|
+
* @deprecated
|
5153
|
+
* @experimental
|
4834
5154
|
*/
|
4835
5155
|
'Performance.setTimeDomain': {
|
4836
5156
|
paramsType: [Protocol.Performance.SetTimeDomainRequest];
|
@@ -4882,6 +5202,7 @@ export namespace ProtocolMapping {
|
|
4882
5202
|
};
|
4883
5203
|
/**
|
4884
5204
|
* Handles a certificate error that fired a certificateError event.
|
5205
|
+
* @deprecated
|
4885
5206
|
*/
|
4886
5207
|
'Security.handleCertificateError': {
|
4887
5208
|
paramsType: [Protocol.Security.HandleCertificateErrorRequest];
|
@@ -4890,6 +5211,7 @@ export namespace ProtocolMapping {
|
|
4890
5211
|
/**
|
4891
5212
|
* Enable/disable overriding certificate errors. If enabled, all certificate error events need to
|
4892
5213
|
* be handled by the DevTools client and should be answered with `handleCertificateError` commands.
|
5214
|
+
* @deprecated
|
4893
5215
|
*/
|
4894
5216
|
'Security.setOverrideCertificateErrors': {
|
4895
5217
|
paramsType: [Protocol.Security.SetOverrideCertificateErrorsRequest];
|
@@ -4994,6 +5316,7 @@ export namespace ProtocolMapping {
|
|
4994
5316
|
};
|
4995
5317
|
/**
|
4996
5318
|
* Override quota for the specified origin
|
5319
|
+
* @experimental
|
4997
5320
|
*/
|
4998
5321
|
'Storage.overrideQuotaForOrigin': {
|
4999
5322
|
paramsType: [Protocol.Storage.OverrideQuotaForOriginRequest];
|
@@ -5058,6 +5381,7 @@ export namespace ProtocolMapping {
|
|
5058
5381
|
/**
|
5059
5382
|
* Returns the number of stored Trust Tokens per issuer for the
|
5060
5383
|
* current browsing context.
|
5384
|
+
* @experimental
|
5061
5385
|
*/
|
5062
5386
|
'Storage.getTrustTokens': {
|
5063
5387
|
paramsType: [];
|
@@ -5066,6 +5390,7 @@ export namespace ProtocolMapping {
|
|
5066
5390
|
/**
|
5067
5391
|
* Removes all Trust Tokens issued by the provided issuerOrigin.
|
5068
5392
|
* Leaves other stored data, including the issuer's Redemption Records, intact.
|
5393
|
+
* @experimental
|
5069
5394
|
*/
|
5070
5395
|
'Storage.clearTrustTokens': {
|
5071
5396
|
paramsType: [Protocol.Storage.ClearTrustTokensRequest];
|
@@ -5073,6 +5398,7 @@ export namespace ProtocolMapping {
|
|
5073
5398
|
};
|
5074
5399
|
/**
|
5075
5400
|
* Gets details for a named interest group.
|
5401
|
+
* @experimental
|
5076
5402
|
*/
|
5077
5403
|
'Storage.getInterestGroupDetails': {
|
5078
5404
|
paramsType: [Protocol.Storage.GetInterestGroupDetailsRequest];
|
@@ -5080,6 +5406,7 @@ export namespace ProtocolMapping {
|
|
5080
5406
|
};
|
5081
5407
|
/**
|
5082
5408
|
* Enables/Disables issuing of interestGroupAccessed events.
|
5409
|
+
* @experimental
|
5083
5410
|
*/
|
5084
5411
|
'Storage.setInterestGroupTracking': {
|
5085
5412
|
paramsType: [Protocol.Storage.SetInterestGroupTrackingRequest];
|
@@ -5088,6 +5415,7 @@ export namespace ProtocolMapping {
|
|
5088
5415
|
/**
|
5089
5416
|
* Enables/Disables issuing of interestGroupAuctionEventOccurred and
|
5090
5417
|
* interestGroupAuctionNetworkRequestCreated.
|
5418
|
+
* @experimental
|
5091
5419
|
*/
|
5092
5420
|
'Storage.setInterestGroupAuctionTracking': {
|
5093
5421
|
paramsType: [Protocol.Storage.SetInterestGroupAuctionTrackingRequest];
|
@@ -5095,6 +5423,7 @@ export namespace ProtocolMapping {
|
|
5095
5423
|
};
|
5096
5424
|
/**
|
5097
5425
|
* Gets metadata for an origin's shared storage.
|
5426
|
+
* @experimental
|
5098
5427
|
*/
|
5099
5428
|
'Storage.getSharedStorageMetadata': {
|
5100
5429
|
paramsType: [Protocol.Storage.GetSharedStorageMetadataRequest];
|
@@ -5102,6 +5431,7 @@ export namespace ProtocolMapping {
|
|
5102
5431
|
};
|
5103
5432
|
/**
|
5104
5433
|
* Gets the entries in an given origin's shared storage.
|
5434
|
+
* @experimental
|
5105
5435
|
*/
|
5106
5436
|
'Storage.getSharedStorageEntries': {
|
5107
5437
|
paramsType: [Protocol.Storage.GetSharedStorageEntriesRequest];
|
@@ -5109,6 +5439,7 @@ export namespace ProtocolMapping {
|
|
5109
5439
|
};
|
5110
5440
|
/**
|
5111
5441
|
* Sets entry with `key` and `value` for a given origin's shared storage.
|
5442
|
+
* @experimental
|
5112
5443
|
*/
|
5113
5444
|
'Storage.setSharedStorageEntry': {
|
5114
5445
|
paramsType: [Protocol.Storage.SetSharedStorageEntryRequest];
|
@@ -5116,6 +5447,7 @@ export namespace ProtocolMapping {
|
|
5116
5447
|
};
|
5117
5448
|
/**
|
5118
5449
|
* Deletes entry for `key` (if it exists) for a given origin's shared storage.
|
5450
|
+
* @experimental
|
5119
5451
|
*/
|
5120
5452
|
'Storage.deleteSharedStorageEntry': {
|
5121
5453
|
paramsType: [Protocol.Storage.DeleteSharedStorageEntryRequest];
|
@@ -5123,6 +5455,7 @@ export namespace ProtocolMapping {
|
|
5123
5455
|
};
|
5124
5456
|
/**
|
5125
5457
|
* Clears all entries for a given origin's shared storage.
|
5458
|
+
* @experimental
|
5126
5459
|
*/
|
5127
5460
|
'Storage.clearSharedStorageEntries': {
|
5128
5461
|
paramsType: [Protocol.Storage.ClearSharedStorageEntriesRequest];
|
@@ -5130,6 +5463,7 @@ export namespace ProtocolMapping {
|
|
5130
5463
|
};
|
5131
5464
|
/**
|
5132
5465
|
* Resets the budget for `ownerOrigin` by clearing all budget withdrawals.
|
5466
|
+
* @experimental
|
5133
5467
|
*/
|
5134
5468
|
'Storage.resetSharedStorageBudget': {
|
5135
5469
|
paramsType: [Protocol.Storage.ResetSharedStorageBudgetRequest];
|
@@ -5137,6 +5471,7 @@ export namespace ProtocolMapping {
|
|
5137
5471
|
};
|
5138
5472
|
/**
|
5139
5473
|
* Enables/disables issuing of sharedStorageAccessed events.
|
5474
|
+
* @experimental
|
5140
5475
|
*/
|
5141
5476
|
'Storage.setSharedStorageTracking': {
|
5142
5477
|
paramsType: [Protocol.Storage.SetSharedStorageTrackingRequest];
|
@@ -5144,6 +5479,7 @@ export namespace ProtocolMapping {
|
|
5144
5479
|
};
|
5145
5480
|
/**
|
5146
5481
|
* Set tracking for a storage key's buckets.
|
5482
|
+
* @experimental
|
5147
5483
|
*/
|
5148
5484
|
'Storage.setStorageBucketTracking': {
|
5149
5485
|
paramsType: [Protocol.Storage.SetStorageBucketTrackingRequest];
|
@@ -5151,6 +5487,7 @@ export namespace ProtocolMapping {
|
|
5151
5487
|
};
|
5152
5488
|
/**
|
5153
5489
|
* Deletes the Storage Bucket with the given storage key and bucket name.
|
5490
|
+
* @experimental
|
5154
5491
|
*/
|
5155
5492
|
'Storage.deleteStorageBucket': {
|
5156
5493
|
paramsType: [Protocol.Storage.DeleteStorageBucketRequest];
|
@@ -5158,6 +5495,7 @@ export namespace ProtocolMapping {
|
|
5158
5495
|
};
|
5159
5496
|
/**
|
5160
5497
|
* Deletes state for sites identified as potential bounce trackers, immediately.
|
5498
|
+
* @experimental
|
5161
5499
|
*/
|
5162
5500
|
'Storage.runBounceTrackingMitigations': {
|
5163
5501
|
paramsType: [];
|
@@ -5165,6 +5503,7 @@ export namespace ProtocolMapping {
|
|
5165
5503
|
};
|
5166
5504
|
/**
|
5167
5505
|
* https://wicg.github.io/attribution-reporting-api/
|
5506
|
+
* @experimental
|
5168
5507
|
*/
|
5169
5508
|
'Storage.setAttributionReportingLocalTestingMode': {
|
5170
5509
|
paramsType: [Protocol.Storage.SetAttributionReportingLocalTestingModeRequest];
|
@@ -5172,6 +5511,7 @@ export namespace ProtocolMapping {
|
|
5172
5511
|
};
|
5173
5512
|
/**
|
5174
5513
|
* Enables/disables issuing of Attribution Reporting events.
|
5514
|
+
* @experimental
|
5175
5515
|
*/
|
5176
5516
|
'Storage.setAttributionReportingTracking': {
|
5177
5517
|
paramsType: [Protocol.Storage.SetAttributionReportingTrackingRequest];
|
@@ -5180,6 +5520,7 @@ export namespace ProtocolMapping {
|
|
5180
5520
|
/**
|
5181
5521
|
* Sends all pending Attribution Reports immediately, regardless of their
|
5182
5522
|
* scheduled report time.
|
5523
|
+
* @experimental
|
5183
5524
|
*/
|
5184
5525
|
'Storage.sendPendingAttributionReports': {
|
5185
5526
|
paramsType: [];
|
@@ -5188,6 +5529,7 @@ export namespace ProtocolMapping {
|
|
5188
5529
|
/**
|
5189
5530
|
* Returns the effective Related Website Sets in use by this profile for the browser
|
5190
5531
|
* session. The effective Related Website Sets will not change during a browser session.
|
5532
|
+
* @experimental
|
5191
5533
|
*/
|
5192
5534
|
'Storage.getRelatedWebsiteSets': {
|
5193
5535
|
paramsType: [];
|
@@ -5197,6 +5539,7 @@ export namespace ProtocolMapping {
|
|
5197
5539
|
* Returns the list of URLs from a page and its embedded resources that match
|
5198
5540
|
* existing grace period URL pattern rules.
|
5199
5541
|
* https://developers.google.com/privacy-sandbox/cookies/temporary-exceptions/grace-period
|
5542
|
+
* @experimental
|
5200
5543
|
*/
|
5201
5544
|
'Storage.getAffectedUrlsForThirdPartyCookieMetadata': {
|
5202
5545
|
paramsType: [Protocol.Storage.GetAffectedUrlsForThirdPartyCookieMetadataRequest];
|
@@ -5243,6 +5586,7 @@ export namespace ProtocolMapping {
|
|
5243
5586
|
};
|
5244
5587
|
/**
|
5245
5588
|
* Attaches to the browser target, only uses flat sessionId mode.
|
5589
|
+
* @experimental
|
5246
5590
|
*/
|
5247
5591
|
'Target.attachToBrowserTarget': {
|
5248
5592
|
paramsType: [];
|
@@ -5264,6 +5608,7 @@ export namespace ProtocolMapping {
|
|
5264
5608
|
* The object has the following API:
|
5265
5609
|
* - `binding.send(json)` - a method to send messages over the remote debugging protocol
|
5266
5610
|
* - `binding.onmessage = json => handleMessage(json)` - a callback that will be called for the protocol notifications and command responses.
|
5611
|
+
* @experimental
|
5267
5612
|
*/
|
5268
5613
|
'Target.exposeDevToolsProtocol': {
|
5269
5614
|
paramsType: [Protocol.Target.ExposeDevToolsProtocolRequest];
|
@@ -5308,6 +5653,7 @@ export namespace ProtocolMapping {
|
|
5308
5653
|
};
|
5309
5654
|
/**
|
5310
5655
|
* Returns information about a target.
|
5656
|
+
* @experimental
|
5311
5657
|
*/
|
5312
5658
|
'Target.getTargetInfo': {
|
5313
5659
|
paramsType: [Protocol.Target.GetTargetInfoRequest?];
|
@@ -5324,6 +5670,7 @@ export namespace ProtocolMapping {
|
|
5324
5670
|
* Sends protocol message over session with given id.
|
5325
5671
|
* Consider using flat mode instead; see commands attachToTarget, setAutoAttach,
|
5326
5672
|
* and crbug.com/991325.
|
5673
|
+
* @deprecated
|
5327
5674
|
*/
|
5328
5675
|
'Target.sendMessageToTarget': {
|
5329
5676
|
paramsType: [Protocol.Target.SendMessageToTargetRequest];
|
@@ -5349,6 +5696,7 @@ export namespace ProtocolMapping {
|
|
5349
5696
|
* through `attachedToTarget`. The specified target is also auto-attached.
|
5350
5697
|
* This cancels the effect of any previous `setAutoAttach` and is also cancelled by subsequent
|
5351
5698
|
* `setAutoAttach`. Only available at the Browser target.
|
5699
|
+
* @experimental
|
5352
5700
|
*/
|
5353
5701
|
'Target.autoAttachRelated': {
|
5354
5702
|
paramsType: [Protocol.Target.AutoAttachRelatedRequest];
|
@@ -5365,6 +5713,7 @@ export namespace ProtocolMapping {
|
|
5365
5713
|
/**
|
5366
5714
|
* Enables target discovery for the specified locations, when `setDiscoverTargets` was set to
|
5367
5715
|
* `true`.
|
5716
|
+
* @experimental
|
5368
5717
|
*/
|
5369
5718
|
'Target.setRemoteLocations': {
|
5370
5719
|
paramsType: [Protocol.Target.SetRemoteLocationsRequest];
|
@@ -5372,6 +5721,7 @@ export namespace ProtocolMapping {
|
|
5372
5721
|
};
|
5373
5722
|
/**
|
5374
5723
|
* Opens a DevTools window for the target.
|
5724
|
+
* @experimental
|
5375
5725
|
*/
|
5376
5726
|
'Target.openDevTools': {
|
5377
5727
|
paramsType: [Protocol.Target.OpenDevToolsRequest];
|
@@ -5400,6 +5750,7 @@ export namespace ProtocolMapping {
|
|
5400
5750
|
};
|
5401
5751
|
/**
|
5402
5752
|
* Gets supported tracing categories.
|
5753
|
+
* @experimental
|
5403
5754
|
*/
|
5404
5755
|
'Tracing.getCategories': {
|
5405
5756
|
paramsType: [];
|
@@ -5407,6 +5758,7 @@ export namespace ProtocolMapping {
|
|
5407
5758
|
};
|
5408
5759
|
/**
|
5409
5760
|
* Record a clock sync marker in the trace.
|
5761
|
+
* @experimental
|
5410
5762
|
*/
|
5411
5763
|
'Tracing.recordClockSyncMarker': {
|
5412
5764
|
paramsType: [Protocol.Tracing.RecordClockSyncMarkerRequest];
|
@@ -5414,6 +5766,7 @@ export namespace ProtocolMapping {
|
|
5414
5766
|
};
|
5415
5767
|
/**
|
5416
5768
|
* Request a global memory dump.
|
5769
|
+
* @experimental
|
5417
5770
|
*/
|
5418
5771
|
'Tracing.requestMemoryDump': {
|
5419
5772
|
paramsType: [Protocol.Tracing.RequestMemoryDumpRequest?];
|