patchright-core 1.57.0 → 1.58.2
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/ThirdPartyNotices.txt +3223 -308
- package/browsers.json +21 -22
- package/lib/cli/program.js +4 -5
- package/lib/client/api.js +3 -0
- package/lib/client/browser.js +3 -5
- package/lib/client/browserContext.js +40 -4
- package/lib/client/browserType.js +4 -3
- package/lib/client/connection.js +4 -0
- package/lib/client/elementHandle.js +3 -0
- package/lib/client/events.js +3 -0
- package/lib/client/fetch.js +3 -4
- package/lib/client/frame.js +10 -1
- package/lib/client/locator.js +8 -0
- package/lib/client/network.js +5 -1
- package/lib/client/page.js +29 -1
- package/lib/client/pageAgent.js +64 -0
- package/lib/client/platform.js +3 -0
- package/lib/client/tracing.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/pollingRecorderSource.js +1 -1
- package/lib/mcpBundle.js +84 -0
- package/lib/mcpBundleImpl/index.js +147 -0
- package/lib/protocol/serializers.js +5 -0
- package/lib/protocol/validator.js +88 -4
- package/lib/remote/playwrightServer.js +1 -2
- package/lib/server/agent/actionRunner.js +335 -0
- package/lib/server/agent/actions.js +128 -0
- package/lib/server/agent/codegen.js +111 -0
- package/lib/server/agent/context.js +150 -0
- package/lib/server/agent/expectTools.js +156 -0
- package/lib/server/agent/pageAgent.js +204 -0
- package/lib/server/agent/performTools.js +262 -0
- package/lib/server/agent/tool.js +109 -0
- package/lib/server/artifact.js +1 -1
- package/lib/server/bidi/bidiBrowser.js +56 -12
- package/lib/server/bidi/bidiChromium.js +8 -12
- package/lib/server/bidi/bidiConnection.js +1 -0
- package/lib/server/bidi/bidiDeserializer.js +116 -0
- package/lib/server/bidi/bidiExecutionContext.js +75 -29
- package/lib/server/bidi/bidiFirefox.js +6 -8
- package/lib/server/bidi/bidiNetworkManager.js +1 -1
- package/lib/server/bidi/bidiPage.js +39 -28
- package/lib/server/bidi/third_party/bidiProtocolCore.js +1 -0
- package/lib/server/browserContext.js +34 -26
- package/lib/server/browserType.js +12 -4
- package/lib/server/chromium/chromium.js +14 -20
- package/lib/server/chromium/chromiumSwitches.js +2 -2
- package/lib/server/chromium/crBrowser.js +22 -12
- package/lib/server/chromium/crConnection.js +0 -5
- package/lib/server/chromium/crCoverage.js +13 -1
- package/lib/server/chromium/crDevTools.js +0 -2
- package/lib/server/chromium/crNetworkManager.js +92 -12
- package/lib/server/chromium/crPage.js +62 -116
- package/lib/server/codegen/javascript.js +6 -29
- package/lib/server/deviceDescriptorsSource.json +56 -56
- package/lib/server/dispatchers/browserContextDispatcher.js +3 -2
- package/lib/server/dispatchers/dispatcher.js +6 -13
- package/lib/server/dispatchers/frameDispatcher.js +1 -1
- package/lib/server/dispatchers/jsHandleDispatcher.js +2 -2
- package/lib/server/dispatchers/pageAgentDispatcher.js +96 -0
- package/lib/server/dispatchers/pageDispatcher.js +4 -0
- package/lib/server/dom.js +12 -3
- package/lib/server/electron/electron.js +5 -2
- package/lib/server/firefox/ffBrowser.js +10 -20
- package/lib/server/firefox/ffConnection.js +0 -5
- package/lib/server/firefox/ffNetworkManager.js +2 -2
- package/lib/server/firefox/ffPage.js +15 -18
- package/lib/server/firefox/firefox.js +6 -8
- package/lib/server/frameSelectors.js +16 -4
- package/lib/server/frames.js +251 -86
- package/lib/server/instrumentation.js +3 -0
- package/lib/server/javascript.js +8 -4
- package/lib/server/launchApp.js +2 -1
- package/lib/server/network.js +50 -12
- package/lib/server/page.js +61 -91
- package/lib/server/progress.js +26 -6
- package/lib/server/recorder/recorderApp.js +79 -100
- package/lib/server/registry/browserFetcher.js +6 -4
- package/lib/server/registry/index.js +172 -149
- package/lib/server/registry/oopDownloadBrowserMain.js +3 -0
- package/lib/server/screencast.js +190 -0
- package/lib/server/screenshotter.js +6 -0
- package/lib/server/trace/recorder/snapshotter.js +17 -8
- package/lib/server/trace/recorder/snapshotterInjected.js +30 -72
- package/lib/server/trace/recorder/tracing.js +29 -21
- package/lib/server/trace/viewer/traceParser.js +72 -0
- package/lib/server/trace/viewer/traceViewer.js +21 -17
- package/lib/server/utils/expectUtils.js +87 -2
- package/lib/server/utils/hostPlatform.js +15 -0
- package/lib/server/utils/httpServer.js +5 -20
- package/lib/server/utils/network.js +37 -28
- package/lib/server/utils/nodePlatform.js +6 -0
- package/lib/server/{chromium/videoRecorder.js → videoRecorder.js} +22 -13
- package/lib/server/webkit/webkit.js +4 -6
- package/lib/server/webkit/wkBrowser.js +2 -6
- package/lib/server/webkit/wkConnection.js +1 -6
- package/lib/server/webkit/wkInterceptableRequest.js +29 -1
- package/lib/server/webkit/wkPage.js +75 -46
- package/lib/utils/isomorphic/ariaSnapshot.js +60 -2
- package/lib/utils/isomorphic/lruCache.js +51 -0
- package/lib/utils/isomorphic/protocolMetainfo.js +9 -1
- package/lib/utils/isomorphic/stringUtils.js +49 -0
- package/lib/utils/isomorphic/trace/entries.js +16 -0
- package/lib/utils/isomorphic/trace/snapshotRenderer.js +499 -0
- package/lib/utils/isomorphic/trace/snapshotServer.js +120 -0
- package/lib/utils/isomorphic/trace/snapshotStorage.js +89 -0
- package/lib/utils/isomorphic/trace/traceLoader.js +131 -0
- package/lib/utils/isomorphic/trace/traceModel.js +365 -0
- package/lib/utils/isomorphic/trace/traceModernizer.js +400 -0
- package/lib/utils/isomorphic/trace/versions/traceV3.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV4.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV5.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV6.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV7.js +16 -0
- package/lib/utils/isomorphic/trace/versions/traceV8.js +16 -0
- package/lib/utils/isomorphic/yaml.js +84 -0
- package/lib/utils.js +2 -0
- package/lib/utilsBundle.js +2 -5
- package/lib/utilsBundleImpl/index.js +165 -165
- package/lib/vite/htmlReport/index.html +21 -21
- package/lib/vite/recorder/assets/codeMirrorModule-CFUTFUO7.js +32 -0
- package/lib/vite/{traceViewer/codeMirrorModule.C3UTv-Ge.css → recorder/assets/codeMirrorModule-DYBRYzYX.css} +1 -1
- package/lib/vite/recorder/assets/{index-Ri0uHF7I.css → index-BSjZa4pk.css} +1 -1
- package/lib/vite/recorder/assets/index-CVkBxsGf.js +193 -0
- package/lib/vite/recorder/index.html +2 -2
- package/lib/vite/traceViewer/assets/codeMirrorModule-BVA4h_ZY.js +32 -0
- package/lib/vite/traceViewer/assets/defaultSettingsView-CjfmcdOz.js +266 -0
- package/lib/vite/{recorder/assets/codeMirrorModule-C3UTv-Ge.css → traceViewer/codeMirrorModule.DYBRYzYX.css} +1 -1
- package/lib/vite/traceViewer/defaultSettingsView.7ch9cixO.css +1 -0
- package/lib/vite/traceViewer/index.BVu7tZDe.css +1 -0
- package/lib/vite/traceViewer/index.BtyWtaE-.js +2 -0
- package/lib/vite/traceViewer/index.html +4 -4
- package/lib/vite/traceViewer/sw.bundle.js +5 -3
- package/lib/vite/traceViewer/uiMode.fyrXARf2.js +5 -0
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/package.json +2 -1
- package/types/protocol.d.ts +738 -159
- package/types/types.d.ts +25 -38
- package/lib/server/bidi/third_party/bidiDeserializer.js +0 -98
- package/lib/server/trace/test/inMemorySnapshotter.js +0 -87
- package/lib/vite/recorder/assets/codeMirrorModule-CBbSe-ZI.js +0 -25
- package/lib/vite/recorder/assets/index-CpZVd2nA.js +0 -193
- package/lib/vite/traceViewer/assets/codeMirrorModule-DHz0wP2C.js +0 -25
- package/lib/vite/traceViewer/assets/defaultSettingsView-WsZP88O6.js +0 -266
- package/lib/vite/traceViewer/defaultSettingsView.ConWv5KN.css +0 -1
- package/lib/vite/traceViewer/index.C4Y3Aw8n.css +0 -1
- package/lib/vite/traceViewer/index.C8xAeo93.js +0 -2
- package/lib/vite/traceViewer/uiMode.BltraIJB.js +0 -5
package/types/protocol.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// This is generated from /utils/protocol-types-generator/index.js
|
|
2
2
|
type binary = string;
|
|
3
|
-
export
|
|
4
|
-
export
|
|
3
|
+
export namespace Protocol {
|
|
4
|
+
export namespace Accessibility {
|
|
5
5
|
/**
|
|
6
6
|
* Unique accessibility node identifier.
|
|
7
7
|
*/
|
|
@@ -341,7 +341,7 @@ including nodes that are ignored for accessibility.
|
|
|
341
341
|
}
|
|
342
342
|
}
|
|
343
343
|
|
|
344
|
-
export
|
|
344
|
+
export namespace Animation {
|
|
345
345
|
/**
|
|
346
346
|
* Animation instance.
|
|
347
347
|
*/
|
|
@@ -441,9 +441,9 @@ Does not exist for animations with ScrollTimeline
|
|
|
441
441
|
*/
|
|
442
442
|
iterationStart: number;
|
|
443
443
|
/**
|
|
444
|
-
* `AnimationEffect`'s iterations.
|
|
444
|
+
* `AnimationEffect`'s iterations. Omitted if the value is infinite.
|
|
445
445
|
*/
|
|
446
|
-
iterations
|
|
446
|
+
iterations?: number;
|
|
447
447
|
/**
|
|
448
448
|
* `AnimationEffect`'s iteration duration.
|
|
449
449
|
Milliseconds for time based animations and
|
|
@@ -667,7 +667,7 @@ percentage [0 - 100] for scroll driven animations
|
|
|
667
667
|
/**
|
|
668
668
|
* Audits domain allows investigation of page violations and possible improvements.
|
|
669
669
|
*/
|
|
670
|
-
export
|
|
670
|
+
export namespace Audits {
|
|
671
671
|
/**
|
|
672
672
|
* Information about a cookie that is affected by an inspector issue.
|
|
673
673
|
*/
|
|
@@ -906,7 +906,7 @@ instead of "limited-quirks".
|
|
|
906
906
|
error: UnencodedDigestError;
|
|
907
907
|
request: AffectedRequest;
|
|
908
908
|
}
|
|
909
|
-
export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"
|
|
909
|
+
export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingIdError"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInputError"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB"|"NavigationEntryMarkedSkippable"|"AutofillAndManualTextPolicyControlledFeaturesInfo"|"AutofillPolicyControlledFeatureInfo"|"ManualTextPolicyControlledFeatureInfo";
|
|
910
910
|
/**
|
|
911
911
|
* Depending on the concrete errorType, different properties are set.
|
|
912
912
|
*/
|
|
@@ -1067,12 +1067,48 @@ re-identify users.
|
|
|
1067
1067
|
*/
|
|
1068
1068
|
sourceCodeLocation?: SourceCodeLocation;
|
|
1069
1069
|
}
|
|
1070
|
+
export type PermissionElementIssueType = "InvalidType"|"FencedFrameDisallowed"|"CspFrameAncestorsMissing"|"PermissionsPolicyBlocked"|"PaddingRightUnsupported"|"PaddingBottomUnsupported"|"InsetBoxShadowUnsupported"|"RequestInProgress"|"UntrustedEvent"|"RegistrationFailed"|"TypeNotSupported"|"InvalidTypeActivation"|"SecurityChecksFailed"|"ActivationDisabled"|"GeolocationDeprecated"|"InvalidDisplayStyle"|"NonOpaqueColor"|"LowContrast"|"FontSizeTooSmall"|"FontSizeTooLarge"|"InvalidSizeValue";
|
|
1071
|
+
/**
|
|
1072
|
+
* This issue warns about improper usage of the <permission> element.
|
|
1073
|
+
*/
|
|
1074
|
+
export interface PermissionElementIssueDetails {
|
|
1075
|
+
issueType: PermissionElementIssueType;
|
|
1076
|
+
/**
|
|
1077
|
+
* The value of the type attribute.
|
|
1078
|
+
*/
|
|
1079
|
+
type?: string;
|
|
1080
|
+
/**
|
|
1081
|
+
* The node ID of the <permission> element.
|
|
1082
|
+
*/
|
|
1083
|
+
nodeId?: DOM.BackendNodeId;
|
|
1084
|
+
/**
|
|
1085
|
+
* True if the issue is a warning, false if it is an error.
|
|
1086
|
+
*/
|
|
1087
|
+
isWarning?: boolean;
|
|
1088
|
+
/**
|
|
1089
|
+
* Fields for message construction:
|
|
1090
|
+
Used for messages that reference a specific permission name
|
|
1091
|
+
*/
|
|
1092
|
+
permissionName?: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* Used for messages about occlusion
|
|
1095
|
+
*/
|
|
1096
|
+
occluderNodeInfo?: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* Used for messages about occluder's parent
|
|
1099
|
+
*/
|
|
1100
|
+
occluderParentNodeInfo?: string;
|
|
1101
|
+
/**
|
|
1102
|
+
* Used for messages about activation disabled reason
|
|
1103
|
+
*/
|
|
1104
|
+
disableReason?: string;
|
|
1105
|
+
}
|
|
1070
1106
|
/**
|
|
1071
1107
|
* A unique identifier for the type of issue. Each type may use one of the
|
|
1072
1108
|
optional fields in InspectorIssueDetails to convey more specific
|
|
1073
1109
|
information about the kind of issue.
|
|
1074
1110
|
*/
|
|
1075
|
-
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"PartitioningBlobURLIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"UserReidentificationIssue";
|
|
1111
|
+
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"PartitioningBlobURLIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"UserReidentificationIssue"|"PermissionElementIssue";
|
|
1076
1112
|
/**
|
|
1077
1113
|
* This struct holds a list of optional fields with additional information
|
|
1078
1114
|
specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -1105,6 +1141,7 @@ add a new optional field to this type.
|
|
|
1105
1141
|
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
|
1106
1142
|
unencodedDigestIssueDetails?: UnencodedDigestIssueDetails;
|
|
1107
1143
|
userReidentificationIssueDetails?: UserReidentificationIssueDetails;
|
|
1144
|
+
permissionElementIssueDetails?: PermissionElementIssueDetails;
|
|
1108
1145
|
}
|
|
1109
1146
|
/**
|
|
1110
1147
|
* A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
@@ -1205,7 +1242,7 @@ using Audits.issueAdded event.
|
|
|
1205
1242
|
/**
|
|
1206
1243
|
* Defines commands and events for Autofill.
|
|
1207
1244
|
*/
|
|
1208
|
-
export
|
|
1245
|
+
export namespace Autofill {
|
|
1209
1246
|
export interface CreditCard {
|
|
1210
1247
|
/**
|
|
1211
1248
|
* 16-digit credit card number.
|
|
@@ -1372,7 +1409,7 @@ If the field and related form cannot be autofilled, returns an error.
|
|
|
1372
1409
|
/**
|
|
1373
1410
|
* Defines events for background web platform features.
|
|
1374
1411
|
*/
|
|
1375
|
-
export
|
|
1412
|
+
export namespace BackgroundService {
|
|
1376
1413
|
/**
|
|
1377
1414
|
* The Background Service that will be associated with the commands/events.
|
|
1378
1415
|
Every Background Service operates independently, but they share the same
|
|
@@ -1475,7 +1512,7 @@ events afterwards if enabled and recording.
|
|
|
1475
1512
|
* This domain allows configuring virtual Bluetooth devices to test
|
|
1476
1513
|
the web-bluetooth API.
|
|
1477
1514
|
*/
|
|
1478
|
-
export
|
|
1515
|
+
export namespace BluetoothEmulation {
|
|
1479
1516
|
/**
|
|
1480
1517
|
* Indicates the various states of Central.
|
|
1481
1518
|
*/
|
|
@@ -1760,7 +1797,7 @@ by |characteristicId|.
|
|
|
1760
1797
|
/**
|
|
1761
1798
|
* The Browser domain defines methods and events for browser managing.
|
|
1762
1799
|
*/
|
|
1763
|
-
export
|
|
1800
|
+
export namespace Browser {
|
|
1764
1801
|
export type BrowserContextID = string;
|
|
1765
1802
|
export type WindowID = number;
|
|
1766
1803
|
/**
|
|
@@ -1792,7 +1829,7 @@ by |characteristicId|.
|
|
|
1792
1829
|
*/
|
|
1793
1830
|
windowState?: WindowState;
|
|
1794
1831
|
}
|
|
1795
|
-
export type PermissionType = "ar"|"audioCapture"|"automaticFullscreen"|"backgroundFetch"|"backgroundSync"|"cameraPanTiltZoom"|"capturedSurfaceControl"|"clipboardReadWrite"|"clipboardSanitizedWrite"|"displayCapture"|"durableStorage"|"geolocation"|"handTracking"|"idleDetection"|"keyboardLock"|"localFonts"|"localNetworkAccess"|"midi"|"midiSysex"|"nfc"|"notifications"|"paymentHandler"|"periodicBackgroundSync"|"pointerLock"|"protectedMediaIdentifier"|"sensors"|"smartCard"|"speakerSelection"|"storageAccess"|"topLevelStorageAccess"|"videoCapture"|"vr"|"wakeLockScreen"|"wakeLockSystem"|"webAppInstallation"|"webPrinting"|"windowManagement";
|
|
1832
|
+
export type PermissionType = "ar"|"audioCapture"|"automaticFullscreen"|"backgroundFetch"|"backgroundSync"|"cameraPanTiltZoom"|"capturedSurfaceControl"|"clipboardReadWrite"|"clipboardSanitizedWrite"|"displayCapture"|"durableStorage"|"geolocation"|"handTracking"|"idleDetection"|"keyboardLock"|"localFonts"|"localNetwork"|"localNetworkAccess"|"loopbackNetwork"|"midi"|"midiSysex"|"nfc"|"notifications"|"paymentHandler"|"periodicBackgroundSync"|"pointerLock"|"protectedMediaIdentifier"|"sensors"|"smartCard"|"speakerSelection"|"storageAccess"|"topLevelStorageAccess"|"videoCapture"|"vr"|"wakeLockScreen"|"wakeLockSystem"|"webAppInstallation"|"webPrinting"|"windowManagement";
|
|
1796
1833
|
export type PermissionSetting = "granted"|"denied"|"prompt";
|
|
1797
1834
|
/**
|
|
1798
1835
|
* Definition of PermissionDescriptor defined in the Permissions API:
|
|
@@ -2247,8 +2284,7 @@ CSS objects can be loaded using the `get*ForNode()` calls (which accept a DOM no
|
|
|
2247
2284
|
can also keep track of stylesheets via the `styleSheetAdded`/`styleSheetRemoved` events and
|
|
2248
2285
|
subsequently load the required stylesheet contents using the `getStyleSheet[Text]()` methods.
|
|
2249
2286
|
*/
|
|
2250
|
-
export
|
|
2251
|
-
export type StyleSheetId = string;
|
|
2287
|
+
export namespace CSS {
|
|
2252
2288
|
/**
|
|
2253
2289
|
* Stylesheet type: "injected" for stylesheets injected via extension, "user-agent" for user-agent
|
|
2254
2290
|
stylesheets, "inspector" for stylesheets created by the inspector (i.e. those holding the "via
|
|
@@ -2389,7 +2425,7 @@ pseudo-classes.
|
|
|
2389
2425
|
/**
|
|
2390
2426
|
* The stylesheet identifier.
|
|
2391
2427
|
*/
|
|
2392
|
-
styleSheetId: StyleSheetId;
|
|
2428
|
+
styleSheetId: DOM.StyleSheetId;
|
|
2393
2429
|
/**
|
|
2394
2430
|
* Owner frame identifier.
|
|
2395
2431
|
*/
|
|
@@ -2474,7 +2510,7 @@ CSS module script.
|
|
|
2474
2510
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2475
2511
|
stylesheet rules) this rule came from.
|
|
2476
2512
|
*/
|
|
2477
|
-
styleSheetId?: StyleSheetId;
|
|
2513
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2478
2514
|
/**
|
|
2479
2515
|
* Rule selector data.
|
|
2480
2516
|
*/
|
|
@@ -2543,7 +2579,7 @@ This list only contains rule types that are collected during the ancestor rule c
|
|
|
2543
2579
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2544
2580
|
stylesheet rules) this rule came from.
|
|
2545
2581
|
*/
|
|
2546
|
-
styleSheetId: StyleSheetId;
|
|
2582
|
+
styleSheetId: DOM.StyleSheetId;
|
|
2547
2583
|
/**
|
|
2548
2584
|
* Offset of the start of the rule (including selector) from the beginning of the stylesheet.
|
|
2549
2585
|
*/
|
|
@@ -2618,7 +2654,7 @@ or it is in the subtree of an element being rendered with base appearance.
|
|
|
2618
2654
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2619
2655
|
stylesheet rules) this rule came from.
|
|
2620
2656
|
*/
|
|
2621
|
-
styleSheetId?: StyleSheetId;
|
|
2657
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2622
2658
|
/**
|
|
2623
2659
|
* CSS properties in the style.
|
|
2624
2660
|
*/
|
|
@@ -2705,7 +2741,7 @@ available).
|
|
|
2705
2741
|
/**
|
|
2706
2742
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2707
2743
|
*/
|
|
2708
|
-
styleSheetId?: StyleSheetId;
|
|
2744
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2709
2745
|
/**
|
|
2710
2746
|
* Array of media queries.
|
|
2711
2747
|
*/
|
|
@@ -2765,7 +2801,7 @@ available).
|
|
|
2765
2801
|
/**
|
|
2766
2802
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2767
2803
|
*/
|
|
2768
|
-
styleSheetId?: StyleSheetId;
|
|
2804
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2769
2805
|
/**
|
|
2770
2806
|
* Optional name for the container.
|
|
2771
2807
|
*/
|
|
@@ -2807,7 +2843,7 @@ available).
|
|
|
2807
2843
|
/**
|
|
2808
2844
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2809
2845
|
*/
|
|
2810
|
-
styleSheetId?: StyleSheetId;
|
|
2846
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2811
2847
|
}
|
|
2812
2848
|
/**
|
|
2813
2849
|
* CSS Scope at-rule descriptor.
|
|
@@ -2825,7 +2861,7 @@ available).
|
|
|
2825
2861
|
/**
|
|
2826
2862
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2827
2863
|
*/
|
|
2828
|
-
styleSheetId?: StyleSheetId;
|
|
2864
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2829
2865
|
}
|
|
2830
2866
|
/**
|
|
2831
2867
|
* CSS Layer at-rule descriptor.
|
|
@@ -2843,7 +2879,7 @@ available).
|
|
|
2843
2879
|
/**
|
|
2844
2880
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2845
2881
|
*/
|
|
2846
|
-
styleSheetId?: StyleSheetId;
|
|
2882
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2847
2883
|
}
|
|
2848
2884
|
/**
|
|
2849
2885
|
* CSS Starting Style at-rule descriptor.
|
|
@@ -2857,7 +2893,7 @@ available).
|
|
|
2857
2893
|
/**
|
|
2858
2894
|
* Identifier of the stylesheet containing this object (if exists).
|
|
2859
2895
|
*/
|
|
2860
|
-
styleSheetId?: StyleSheetId;
|
|
2896
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2861
2897
|
}
|
|
2862
2898
|
/**
|
|
2863
2899
|
* CSS Layer data.
|
|
@@ -2977,7 +3013,7 @@ and additional information such as platformFontFamily and fontVariationAxes.
|
|
|
2977
3013
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2978
3014
|
stylesheet rules) this rule came from.
|
|
2979
3015
|
*/
|
|
2980
|
-
styleSheetId?: StyleSheetId;
|
|
3016
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
2981
3017
|
/**
|
|
2982
3018
|
* Parent stylesheet's origin.
|
|
2983
3019
|
*/
|
|
@@ -2999,7 +3035,7 @@ stylesheet rules) this rule came from.
|
|
|
2999
3035
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
3000
3036
|
stylesheet rules) this rule came from.
|
|
3001
3037
|
*/
|
|
3002
|
-
styleSheetId?: StyleSheetId;
|
|
3038
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
3003
3039
|
/**
|
|
3004
3040
|
* Parent stylesheet's origin.
|
|
3005
3041
|
*/
|
|
@@ -3033,22 +3069,31 @@ stylesheet rules) this rule came from.
|
|
|
3033
3069
|
syntax: string;
|
|
3034
3070
|
}
|
|
3035
3071
|
/**
|
|
3036
|
-
* CSS
|
|
3072
|
+
* CSS generic @rule representation.
|
|
3037
3073
|
*/
|
|
3038
|
-
export interface
|
|
3074
|
+
export interface CSSAtRule {
|
|
3075
|
+
/**
|
|
3076
|
+
* Type of at-rule.
|
|
3077
|
+
*/
|
|
3078
|
+
type: "font-face"|"font-feature-values"|"font-palette-values";
|
|
3079
|
+
/**
|
|
3080
|
+
* Subsection of font-feature-values, if this is a subsection.
|
|
3081
|
+
*/
|
|
3082
|
+
subsection?: "swash"|"annotation"|"ornaments"|"stylistic"|"styleset"|"character-variant";
|
|
3083
|
+
/**
|
|
3084
|
+
* LINT.ThenChange(//third_party/blink/renderer/core/inspector/inspector_style_sheet.cc:FontVariantAlternatesFeatureType,//third_party/blink/renderer/core/inspector/inspector_css_agent.cc:FontVariantAlternatesFeatureType)
|
|
3085
|
+
Associated name, if applicable.
|
|
3086
|
+
*/
|
|
3087
|
+
name?: Value;
|
|
3039
3088
|
/**
|
|
3040
3089
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
3041
3090
|
stylesheet rules) this rule came from.
|
|
3042
3091
|
*/
|
|
3043
|
-
styleSheetId?: StyleSheetId;
|
|
3092
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
3044
3093
|
/**
|
|
3045
3094
|
* Parent stylesheet's origin.
|
|
3046
3095
|
*/
|
|
3047
3096
|
origin: StyleSheetOrigin;
|
|
3048
|
-
/**
|
|
3049
|
-
* Associated font palette name.
|
|
3050
|
-
*/
|
|
3051
|
-
fontPaletteName: Value;
|
|
3052
3097
|
/**
|
|
3053
3098
|
* Associated style declaration.
|
|
3054
3099
|
*/
|
|
@@ -3062,7 +3107,7 @@ stylesheet rules) this rule came from.
|
|
|
3062
3107
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
3063
3108
|
stylesheet rules) this rule came from.
|
|
3064
3109
|
*/
|
|
3065
|
-
styleSheetId?: StyleSheetId;
|
|
3110
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
3066
3111
|
/**
|
|
3067
3112
|
* Parent stylesheet's origin.
|
|
3068
3113
|
*/
|
|
@@ -3139,7 +3184,7 @@ stylesheet rules) this rule came from.
|
|
|
3139
3184
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
3140
3185
|
stylesheet rules) this rule came from.
|
|
3141
3186
|
*/
|
|
3142
|
-
styleSheetId?: StyleSheetId;
|
|
3187
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
3143
3188
|
/**
|
|
3144
3189
|
* Parent stylesheet's origin.
|
|
3145
3190
|
*/
|
|
@@ -3161,7 +3206,7 @@ stylesheet rules) this rule came from.
|
|
|
3161
3206
|
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
3162
3207
|
stylesheet rules) this rule came from.
|
|
3163
3208
|
*/
|
|
3164
|
-
styleSheetId?: StyleSheetId;
|
|
3209
|
+
styleSheetId?: DOM.StyleSheetId;
|
|
3165
3210
|
/**
|
|
3166
3211
|
* Parent stylesheet's origin.
|
|
3167
3212
|
*/
|
|
@@ -3182,7 +3227,7 @@ stylesheet rules) this rule came from.
|
|
|
3182
3227
|
/**
|
|
3183
3228
|
* The css style sheet identifier.
|
|
3184
3229
|
*/
|
|
3185
|
-
styleSheetId: StyleSheetId;
|
|
3230
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3186
3231
|
/**
|
|
3187
3232
|
* The range of the style text in the enclosing stylesheet.
|
|
3188
3233
|
*/
|
|
@@ -3221,7 +3266,7 @@ resized.) The current implementation considers only viewport-dependent media fea
|
|
|
3221
3266
|
* Fired whenever a stylesheet is changed as a result of the client operation.
|
|
3222
3267
|
*/
|
|
3223
3268
|
export type styleSheetChangedPayload = {
|
|
3224
|
-
styleSheetId: StyleSheetId;
|
|
3269
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3225
3270
|
}
|
|
3226
3271
|
/**
|
|
3227
3272
|
* Fired whenever an active document stylesheet is removed.
|
|
@@ -3230,7 +3275,7 @@ resized.) The current implementation considers only viewport-dependent media fea
|
|
|
3230
3275
|
/**
|
|
3231
3276
|
* Identifier of the removed stylesheet.
|
|
3232
3277
|
*/
|
|
3233
|
-
styleSheetId: StyleSheetId;
|
|
3278
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3234
3279
|
}
|
|
3235
3280
|
export type computedStyleUpdatedPayload = {
|
|
3236
3281
|
/**
|
|
@@ -3247,7 +3292,7 @@ position specified by `location`.
|
|
|
3247
3292
|
/**
|
|
3248
3293
|
* The css style sheet identifier where a new rule should be inserted.
|
|
3249
3294
|
*/
|
|
3250
|
-
styleSheetId: StyleSheetId;
|
|
3295
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3251
3296
|
/**
|
|
3252
3297
|
* The text of a new rule.
|
|
3253
3298
|
*/
|
|
@@ -3273,7 +3318,7 @@ incorrect results if the declaration contains a var() for example.
|
|
|
3273
3318
|
* Returns all class names from specified stylesheet.
|
|
3274
3319
|
*/
|
|
3275
3320
|
export type collectClassNamesParameters = {
|
|
3276
|
-
styleSheetId: StyleSheetId;
|
|
3321
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3277
3322
|
}
|
|
3278
3323
|
export type collectClassNamesReturnValue = {
|
|
3279
3324
|
/**
|
|
@@ -3301,7 +3346,7 @@ for the frame's document if it exists or creates a new stylesheet
|
|
|
3301
3346
|
/**
|
|
3302
3347
|
* Identifier of the created "via-inspector" stylesheet.
|
|
3303
3348
|
*/
|
|
3304
|
-
styleSheetId: StyleSheetId;
|
|
3349
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3305
3350
|
}
|
|
3306
3351
|
/**
|
|
3307
3352
|
* Disables the CSS agent for the given page.
|
|
@@ -3527,9 +3572,9 @@ will not be set if there is no active position-try fallback.
|
|
|
3527
3572
|
*/
|
|
3528
3573
|
cssPropertyRegistrations?: CSSPropertyRegistration[];
|
|
3529
3574
|
/**
|
|
3530
|
-
* A
|
|
3575
|
+
* A list of simple @rules matching this node or its pseudo-elements.
|
|
3531
3576
|
*/
|
|
3532
|
-
|
|
3577
|
+
cssAtRules?: CSSAtRule[];
|
|
3533
3578
|
/**
|
|
3534
3579
|
* Id of the first parent element that does not have display: contents.
|
|
3535
3580
|
*/
|
|
@@ -3572,7 +3617,7 @@ node.
|
|
|
3572
3617
|
* Returns the current textual content for a stylesheet.
|
|
3573
3618
|
*/
|
|
3574
3619
|
export type getStyleSheetTextParameters = {
|
|
3575
|
-
styleSheetId: StyleSheetId;
|
|
3620
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3576
3621
|
}
|
|
3577
3622
|
export type getStyleSheetTextReturnValue = {
|
|
3578
3623
|
/**
|
|
@@ -3597,7 +3642,7 @@ the full layer tree for the tree scope and their ordering.
|
|
|
3597
3642
|
returns an array of locations of the CSS selector in the style sheet.
|
|
3598
3643
|
*/
|
|
3599
3644
|
export type getLocationForSelectorParameters = {
|
|
3600
|
-
styleSheetId: StyleSheetId;
|
|
3645
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3601
3646
|
selectorText: string;
|
|
3602
3647
|
}
|
|
3603
3648
|
export type getLocationForSelectorReturnValue = {
|
|
@@ -3658,7 +3703,7 @@ property
|
|
|
3658
3703
|
* Modifies the property rule property name.
|
|
3659
3704
|
*/
|
|
3660
3705
|
export type setPropertyRulePropertyNameParameters = {
|
|
3661
|
-
styleSheetId: StyleSheetId;
|
|
3706
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3662
3707
|
range: SourceRange;
|
|
3663
3708
|
propertyName: string;
|
|
3664
3709
|
}
|
|
@@ -3672,7 +3717,7 @@ property
|
|
|
3672
3717
|
* Modifies the keyframe rule key text.
|
|
3673
3718
|
*/
|
|
3674
3719
|
export type setKeyframeKeyParameters = {
|
|
3675
|
-
styleSheetId: StyleSheetId;
|
|
3720
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3676
3721
|
range: SourceRange;
|
|
3677
3722
|
keyText: string;
|
|
3678
3723
|
}
|
|
@@ -3686,7 +3731,7 @@ property
|
|
|
3686
3731
|
* Modifies the rule selector.
|
|
3687
3732
|
*/
|
|
3688
3733
|
export type setMediaTextParameters = {
|
|
3689
|
-
styleSheetId: StyleSheetId;
|
|
3734
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3690
3735
|
range: SourceRange;
|
|
3691
3736
|
text: string;
|
|
3692
3737
|
}
|
|
@@ -3700,7 +3745,7 @@ property
|
|
|
3700
3745
|
* Modifies the expression of a container query.
|
|
3701
3746
|
*/
|
|
3702
3747
|
export type setContainerQueryTextParameters = {
|
|
3703
|
-
styleSheetId: StyleSheetId;
|
|
3748
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3704
3749
|
range: SourceRange;
|
|
3705
3750
|
text: string;
|
|
3706
3751
|
}
|
|
@@ -3714,7 +3759,7 @@ property
|
|
|
3714
3759
|
* Modifies the expression of a supports at-rule.
|
|
3715
3760
|
*/
|
|
3716
3761
|
export type setSupportsTextParameters = {
|
|
3717
|
-
styleSheetId: StyleSheetId;
|
|
3762
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3718
3763
|
range: SourceRange;
|
|
3719
3764
|
text: string;
|
|
3720
3765
|
}
|
|
@@ -3728,7 +3773,7 @@ property
|
|
|
3728
3773
|
* Modifies the expression of a scope at-rule.
|
|
3729
3774
|
*/
|
|
3730
3775
|
export type setScopeTextParameters = {
|
|
3731
|
-
styleSheetId: StyleSheetId;
|
|
3776
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3732
3777
|
range: SourceRange;
|
|
3733
3778
|
text: string;
|
|
3734
3779
|
}
|
|
@@ -3742,7 +3787,7 @@ property
|
|
|
3742
3787
|
* Modifies the rule selector.
|
|
3743
3788
|
*/
|
|
3744
3789
|
export type setRuleSelectorParameters = {
|
|
3745
|
-
styleSheetId: StyleSheetId;
|
|
3790
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3746
3791
|
range: SourceRange;
|
|
3747
3792
|
selector: string;
|
|
3748
3793
|
}
|
|
@@ -3756,7 +3801,7 @@ property
|
|
|
3756
3801
|
* Sets the new stylesheet text.
|
|
3757
3802
|
*/
|
|
3758
3803
|
export type setStyleSheetTextParameters = {
|
|
3759
|
-
styleSheetId: StyleSheetId;
|
|
3804
|
+
styleSheetId: DOM.StyleSheetId;
|
|
3760
3805
|
text: string;
|
|
3761
3806
|
}
|
|
3762
3807
|
export type setStyleSheetTextReturnValue = {
|
|
@@ -3825,7 +3870,7 @@ instrumentation).
|
|
|
3825
3870
|
}
|
|
3826
3871
|
}
|
|
3827
3872
|
|
|
3828
|
-
export
|
|
3873
|
+
export namespace CacheStorage {
|
|
3829
3874
|
/**
|
|
3830
3875
|
* Unique identifier of the Cache object.
|
|
3831
3876
|
*/
|
|
@@ -4022,7 +4067,7 @@ is the count of all entries from this storage.
|
|
|
4022
4067
|
* A domain for interacting with Cast, Presentation API, and Remote Playback API
|
|
4023
4068
|
functionalities.
|
|
4024
4069
|
*/
|
|
4025
|
-
export
|
|
4070
|
+
export namespace Cast {
|
|
4026
4071
|
export interface Sink {
|
|
4027
4072
|
name: string;
|
|
4028
4073
|
id: string;
|
|
@@ -4111,7 +4156,7 @@ and never sends the same node twice. It is client's responsibility to collect in
|
|
|
4111
4156
|
the nodes that were sent to the client. Note that `iframe` owner elements will return
|
|
4112
4157
|
corresponding document elements as their child nodes.
|
|
4113
4158
|
*/
|
|
4114
|
-
export
|
|
4159
|
+
export namespace DOM {
|
|
4115
4160
|
/**
|
|
4116
4161
|
* Unique DOM node identifier.
|
|
4117
4162
|
*/
|
|
@@ -4121,6 +4166,10 @@ corresponding document elements as their child nodes.
|
|
|
4121
4166
|
front-end.
|
|
4122
4167
|
*/
|
|
4123
4168
|
export type BackendNodeId = number;
|
|
4169
|
+
/**
|
|
4170
|
+
* Unique identifier for a CSS stylesheet.
|
|
4171
|
+
*/
|
|
4172
|
+
export type StyleSheetId = string;
|
|
4124
4173
|
/**
|
|
4125
4174
|
* Backend node with a friendly name.
|
|
4126
4175
|
*/
|
|
@@ -4138,7 +4187,7 @@ front-end.
|
|
|
4138
4187
|
/**
|
|
4139
4188
|
* Pseudo element type.
|
|
4140
4189
|
*/
|
|
4141
|
-
export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon";
|
|
4190
|
+
export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon"|"overscroll-area-parent";
|
|
4142
4191
|
/**
|
|
4143
4192
|
* Shadow root type.
|
|
4144
4193
|
*/
|
|
@@ -4289,6 +4338,7 @@ The property is always undefined now.
|
|
|
4289
4338
|
assignedSlot?: BackendNode;
|
|
4290
4339
|
isScrollable?: boolean;
|
|
4291
4340
|
affectedByStartingStyles?: boolean;
|
|
4341
|
+
adoptedStyleSheets?: StyleSheetId[];
|
|
4292
4342
|
}
|
|
4293
4343
|
/**
|
|
4294
4344
|
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
|
@@ -4421,6 +4471,19 @@ The property is always undefined now.
|
|
|
4421
4471
|
*/
|
|
4422
4472
|
value: string;
|
|
4423
4473
|
}
|
|
4474
|
+
/**
|
|
4475
|
+
* Fired when `Element`'s adoptedStyleSheets are modified.
|
|
4476
|
+
*/
|
|
4477
|
+
export type adoptedStyleSheetsModifiedPayload = {
|
|
4478
|
+
/**
|
|
4479
|
+
* Id of the node that has changed.
|
|
4480
|
+
*/
|
|
4481
|
+
nodeId: NodeId;
|
|
4482
|
+
/**
|
|
4483
|
+
* New adoptedStyleSheets array.
|
|
4484
|
+
*/
|
|
4485
|
+
adoptedStyleSheets: StyleSheetId[];
|
|
4486
|
+
}
|
|
4424
4487
|
/**
|
|
4425
4488
|
* Fired when `Element`'s attribute is removed.
|
|
4426
4489
|
*/
|
|
@@ -5556,7 +5619,7 @@ popover if it was previously force-opened.
|
|
|
5556
5619
|
* DOM debugging allows setting breakpoints on particular DOM operations and events. JavaScript
|
|
5557
5620
|
execution will stop on these operations as if there was a regular breakpoint set.
|
|
5558
5621
|
*/
|
|
5559
|
-
export
|
|
5622
|
+
export namespace DOMDebugger {
|
|
5560
5623
|
/**
|
|
5561
5624
|
* DOM breakpoint type.
|
|
5562
5625
|
*/
|
|
@@ -5758,7 +5821,7 @@ EventTarget.
|
|
|
5758
5821
|
/**
|
|
5759
5822
|
* This domain facilitates obtaining document snapshots with DOM, layout, and style information.
|
|
5760
5823
|
*/
|
|
5761
|
-
export
|
|
5824
|
+
export namespace DOMSnapshot {
|
|
5762
5825
|
/**
|
|
5763
5826
|
* A Node in the DOM tree.
|
|
5764
5827
|
*/
|
|
@@ -6296,7 +6359,7 @@ The final text color opacity is computed based on the opacity of all overlapping
|
|
|
6296
6359
|
/**
|
|
6297
6360
|
* Query and modify DOM storage.
|
|
6298
6361
|
*/
|
|
6299
|
-
export
|
|
6362
|
+
export namespace DOMStorage {
|
|
6300
6363
|
export type SerializedStorageKey = string;
|
|
6301
6364
|
/**
|
|
6302
6365
|
* DOM Storage identifier.
|
|
@@ -6379,7 +6442,7 @@ The final text color opacity is computed based on the opacity of all overlapping
|
|
|
6379
6442
|
}
|
|
6380
6443
|
}
|
|
6381
6444
|
|
|
6382
|
-
export
|
|
6445
|
+
export namespace DeviceAccess {
|
|
6383
6446
|
/**
|
|
6384
6447
|
* Device request id.
|
|
6385
6448
|
*/
|
|
@@ -6441,7 +6504,7 @@ selectPrompt or cancelPrompt command.
|
|
|
6441
6504
|
}
|
|
6442
6505
|
}
|
|
6443
6506
|
|
|
6444
|
-
export
|
|
6507
|
+
export namespace DeviceOrientation {
|
|
6445
6508
|
|
|
6446
6509
|
|
|
6447
6510
|
/**
|
|
@@ -6475,7 +6538,7 @@ selectPrompt or cancelPrompt command.
|
|
|
6475
6538
|
/**
|
|
6476
6539
|
* This domain emulates different environments for the page.
|
|
6477
6540
|
*/
|
|
6478
|
-
export
|
|
6541
|
+
export namespace Emulation {
|
|
6479
6542
|
export interface SafeAreaInsets {
|
|
6480
6543
|
/**
|
|
6481
6544
|
* Overrides safe-area-inset-top.
|
|
@@ -7372,7 +7435,7 @@ of size 100lvh.
|
|
|
7372
7435
|
occurring in native code invoked from JavaScript. Once breakpoint is hit, it is
|
|
7373
7436
|
reported through Debugger domain, similarly to regular breakpoints being hit.
|
|
7374
7437
|
*/
|
|
7375
|
-
export
|
|
7438
|
+
export namespace EventBreakpoints {
|
|
7376
7439
|
|
|
7377
7440
|
|
|
7378
7441
|
/**
|
|
@@ -7409,7 +7472,7 @@ reported through Debugger domain, similarly to regular breakpoints being hit.
|
|
|
7409
7472
|
/**
|
|
7410
7473
|
* Defines commands and events for browser extensions.
|
|
7411
7474
|
*/
|
|
7412
|
-
export
|
|
7475
|
+
export namespace Extensions {
|
|
7413
7476
|
/**
|
|
7414
7477
|
* Storage areas.
|
|
7415
7478
|
*/
|
|
@@ -7528,7 +7591,7 @@ will be merged with existing values in the storage area.
|
|
|
7528
7591
|
/**
|
|
7529
7592
|
* This domain allows interacting with the FedCM dialog.
|
|
7530
7593
|
*/
|
|
7531
|
-
export
|
|
7594
|
+
export namespace FedCm {
|
|
7532
7595
|
/**
|
|
7533
7596
|
* Whether this is a sign-up or sign-in action for this account, i.e.
|
|
7534
7597
|
whether this account has ever been used to sign in to this RP before.
|
|
@@ -7636,7 +7699,7 @@ a dialog even if one was recently dismissed by the user.
|
|
|
7636
7699
|
/**
|
|
7637
7700
|
* A domain for letting clients substitute browser's network layer with client code.
|
|
7638
7701
|
*/
|
|
7639
|
-
export
|
|
7702
|
+
export namespace Fetch {
|
|
7640
7703
|
/**
|
|
7641
7704
|
* Unique request identifier.
|
|
7642
7705
|
Note that this does not identify individual HTTP requests that are part of
|
|
@@ -8007,7 +8070,7 @@ domain before body is received results in an undefined behavior.
|
|
|
8007
8070
|
}
|
|
8008
8071
|
}
|
|
8009
8072
|
|
|
8010
|
-
export
|
|
8073
|
+
export namespace FileSystem {
|
|
8011
8074
|
export interface File {
|
|
8012
8075
|
name: string;
|
|
8013
8076
|
/**
|
|
@@ -8058,7 +8121,7 @@ domain before body is received results in an undefined behavior.
|
|
|
8058
8121
|
/**
|
|
8059
8122
|
* This domain provides experimental commands only supported in headless mode.
|
|
8060
8123
|
*/
|
|
8061
|
-
export
|
|
8124
|
+
export namespace HeadlessExperimental {
|
|
8062
8125
|
/**
|
|
8063
8126
|
* Encoding options for a screenshot.
|
|
8064
8127
|
*/
|
|
@@ -8138,7 +8201,7 @@ display. Reported for diagnostic uses, may be removed in the future.
|
|
|
8138
8201
|
/**
|
|
8139
8202
|
* Input/Output operations for streams produced by DevTools.
|
|
8140
8203
|
*/
|
|
8141
|
-
export
|
|
8204
|
+
export namespace IO {
|
|
8142
8205
|
/**
|
|
8143
8206
|
* This is either obtained from another method or specified as `blob:<uuid>` where
|
|
8144
8207
|
`<uuid>` is an UUID of a Blob.
|
|
@@ -8206,7 +8269,7 @@ following the last read). Some types of streams may only support sequential read
|
|
|
8206
8269
|
}
|
|
8207
8270
|
}
|
|
8208
8271
|
|
|
8209
|
-
export
|
|
8272
|
+
export namespace IndexedDB {
|
|
8210
8273
|
/**
|
|
8211
8274
|
* Database with an array of object stores.
|
|
8212
8275
|
*/
|
|
@@ -8585,7 +8648,7 @@ Security origin.
|
|
|
8585
8648
|
}
|
|
8586
8649
|
}
|
|
8587
8650
|
|
|
8588
|
-
export
|
|
8651
|
+
export namespace Input {
|
|
8589
8652
|
export interface TouchPoint {
|
|
8590
8653
|
/**
|
|
8591
8654
|
* X coordinate of the event relative to the main frame's viewport in CSS pixels.
|
|
@@ -9108,7 +9171,7 @@ for the preferred input type).
|
|
|
9108
9171
|
}
|
|
9109
9172
|
}
|
|
9110
9173
|
|
|
9111
|
-
export
|
|
9174
|
+
export namespace Inspector {
|
|
9112
9175
|
|
|
9113
9176
|
/**
|
|
9114
9177
|
* Fired when remote debugging connection is about to be terminated. Contains detach reason.
|
|
@@ -9148,7 +9211,7 @@ for the preferred input type).
|
|
|
9148
9211
|
}
|
|
9149
9212
|
}
|
|
9150
9213
|
|
|
9151
|
-
export
|
|
9214
|
+
export namespace LayerTree {
|
|
9152
9215
|
/**
|
|
9153
9216
|
* Unique Layer identifier.
|
|
9154
9217
|
*/
|
|
@@ -9445,7 +9508,7 @@ transform/scrolling purposes only.
|
|
|
9445
9508
|
/**
|
|
9446
9509
|
* Provides access to log entries.
|
|
9447
9510
|
*/
|
|
9448
|
-
export
|
|
9511
|
+
export namespace Log {
|
|
9449
9512
|
/**
|
|
9450
9513
|
* Log entry.
|
|
9451
9514
|
*/
|
|
@@ -9561,7 +9624,7 @@ transform/scrolling purposes only.
|
|
|
9561
9624
|
/**
|
|
9562
9625
|
* This domain allows detailed inspection of media elements.
|
|
9563
9626
|
*/
|
|
9564
|
-
export
|
|
9627
|
+
export namespace Media {
|
|
9565
9628
|
/**
|
|
9566
9629
|
* Players will get an ID that is unique within the agent context.
|
|
9567
9630
|
*/
|
|
@@ -9692,7 +9755,7 @@ event for each active player.
|
|
|
9692
9755
|
}
|
|
9693
9756
|
}
|
|
9694
9757
|
|
|
9695
|
-
export
|
|
9758
|
+
export namespace Memory {
|
|
9696
9759
|
/**
|
|
9697
9760
|
* Memory pressure level.
|
|
9698
9761
|
*/
|
|
@@ -9872,7 +9935,7 @@ collected since browser process startup.
|
|
|
9872
9935
|
* Network domain allows tracking network activities of the page. It exposes information about http,
|
|
9873
9936
|
file, data and other requests and responses, their headers, bodies, timing, etc.
|
|
9874
9937
|
*/
|
|
9875
|
-
export
|
|
9938
|
+
export namespace Network {
|
|
9876
9939
|
/**
|
|
9877
9940
|
* Resource type as it was perceived by the rendering engine.
|
|
9878
9941
|
*/
|
|
@@ -10021,6 +10084,10 @@ milliseconds relatively to this requestTime.
|
|
|
10021
10084
|
* Loading priority of a resource request.
|
|
10022
10085
|
*/
|
|
10023
10086
|
export type ResourcePriority = "VeryLow"|"Low"|"Medium"|"High"|"VeryHigh";
|
|
10087
|
+
/**
|
|
10088
|
+
* The render blocking behavior of a resource request.
|
|
10089
|
+
*/
|
|
10090
|
+
export type RenderBlockingBehavior = "Blocking"|"InBodyParserBlocking"|"NonBlocking"|"NonBlockingDynamic"|"PotentiallyBlocking";
|
|
10024
10091
|
/**
|
|
10025
10092
|
* Post data entry for HTTP request
|
|
10026
10093
|
*/
|
|
@@ -10204,11 +10271,6 @@ applicable or not known.
|
|
|
10204
10271
|
* The reason why request was blocked.
|
|
10205
10272
|
*/
|
|
10206
10273
|
export type BlockedReason = "other"|"csp"|"mixed-content"|"origin"|"inspector"|"integrity"|"subresource-filter"|"content-type"|"coep-frame-resource-needs-coep-header"|"coop-sandboxed-iframe-cannot-navigate-to-coop-page"|"corp-not-same-origin"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep"|"corp-not-same-origin-after-defaulted-to-same-origin-by-dip"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip"|"corp-not-same-site"|"sri-message-signature-mismatch";
|
|
10207
|
-
/**
|
|
10208
|
-
* Sets Controls for IP Proxy of requests.
|
|
10209
|
-
Page reload is required before the new behavior will be observed.
|
|
10210
|
-
*/
|
|
10211
|
-
export type IpProxyStatus = "Available"|"FeatureNotEnabled"|"MaskedDomainListNotEnabled"|"MaskedDomainListNotPopulated"|"AuthTokensUnavailable"|"Unavailable"|"BypassedByDevTools";
|
|
10212
10274
|
/**
|
|
10213
10275
|
* The reason why request was blocked.
|
|
10214
10276
|
*/
|
|
@@ -10379,11 +10441,6 @@ Otherwise, the API is not used.
|
|
|
10379
10441
|
* Security details for the request.
|
|
10380
10442
|
*/
|
|
10381
10443
|
securityDetails?: SecurityDetails;
|
|
10382
|
-
/**
|
|
10383
|
-
* Indicates whether the request was sent through IP Protection proxies. If
|
|
10384
|
-
set to true, the request used the IP Protection privacy feature.
|
|
10385
|
-
*/
|
|
10386
|
-
isIpProtectionUsed?: boolean;
|
|
10387
10444
|
}
|
|
10388
10445
|
/**
|
|
10389
10446
|
* WebSocket request data.
|
|
@@ -10989,6 +11046,12 @@ matched (including p2p connections).
|
|
|
10989
11046
|
* Expected to be unsigned integer.
|
|
10990
11047
|
*/
|
|
10991
11048
|
receiveBufferSize?: number;
|
|
11049
|
+
multicastLoopback?: boolean;
|
|
11050
|
+
/**
|
|
11051
|
+
* Unsigned int 8.
|
|
11052
|
+
*/
|
|
11053
|
+
multicastTimeToLive?: number;
|
|
11054
|
+
multicastAllowAddressSharing?: boolean;
|
|
10992
11055
|
}
|
|
10993
11056
|
export interface DirectUDPMessage {
|
|
10994
11057
|
data: binary;
|
|
@@ -11002,7 +11065,7 @@ Expected to be unsigned integer.
|
|
|
11002
11065
|
*/
|
|
11003
11066
|
remotePort?: number;
|
|
11004
11067
|
}
|
|
11005
|
-
export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"
|
|
11068
|
+
export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PermissionBlock"|"PermissionWarn";
|
|
11006
11069
|
export type IPAddressSpace = "Loopback"|"Local"|"Public"|"Unknown";
|
|
11007
11070
|
export interface ConnectTiming {
|
|
11008
11071
|
/**
|
|
@@ -11089,6 +11152,183 @@ the same request (but not for redirected requests).
|
|
|
11089
11152
|
*/
|
|
11090
11153
|
groupName: string;
|
|
11091
11154
|
}
|
|
11155
|
+
/**
|
|
11156
|
+
* Unique identifier for a device bound session.
|
|
11157
|
+
*/
|
|
11158
|
+
export interface DeviceBoundSessionKey {
|
|
11159
|
+
/**
|
|
11160
|
+
* The site the session is set up for.
|
|
11161
|
+
*/
|
|
11162
|
+
site: string;
|
|
11163
|
+
/**
|
|
11164
|
+
* The id of the session.
|
|
11165
|
+
*/
|
|
11166
|
+
id: string;
|
|
11167
|
+
}
|
|
11168
|
+
/**
|
|
11169
|
+
* A device bound session's cookie craving.
|
|
11170
|
+
*/
|
|
11171
|
+
export interface DeviceBoundSessionCookieCraving {
|
|
11172
|
+
/**
|
|
11173
|
+
* The name of the craving.
|
|
11174
|
+
*/
|
|
11175
|
+
name: string;
|
|
11176
|
+
/**
|
|
11177
|
+
* The domain of the craving.
|
|
11178
|
+
*/
|
|
11179
|
+
domain: string;
|
|
11180
|
+
/**
|
|
11181
|
+
* The path of the craving.
|
|
11182
|
+
*/
|
|
11183
|
+
path: string;
|
|
11184
|
+
/**
|
|
11185
|
+
* The `Secure` attribute of the craving attributes.
|
|
11186
|
+
*/
|
|
11187
|
+
secure: boolean;
|
|
11188
|
+
/**
|
|
11189
|
+
* The `HttpOnly` attribute of the craving attributes.
|
|
11190
|
+
*/
|
|
11191
|
+
httpOnly: boolean;
|
|
11192
|
+
/**
|
|
11193
|
+
* The `SameSite` attribute of the craving attributes.
|
|
11194
|
+
*/
|
|
11195
|
+
sameSite?: CookieSameSite;
|
|
11196
|
+
}
|
|
11197
|
+
/**
|
|
11198
|
+
* A device bound session's inclusion URL rule.
|
|
11199
|
+
*/
|
|
11200
|
+
export interface DeviceBoundSessionUrlRule {
|
|
11201
|
+
/**
|
|
11202
|
+
* See comments on `net::device_bound_sessions::SessionInclusionRules::UrlRule::rule_type`.
|
|
11203
|
+
*/
|
|
11204
|
+
ruleType: "Exclude"|"Include";
|
|
11205
|
+
/**
|
|
11206
|
+
* See comments on `net::device_bound_sessions::SessionInclusionRules::UrlRule::host_pattern`.
|
|
11207
|
+
*/
|
|
11208
|
+
hostPattern: string;
|
|
11209
|
+
/**
|
|
11210
|
+
* See comments on `net::device_bound_sessions::SessionInclusionRules::UrlRule::path_prefix`.
|
|
11211
|
+
*/
|
|
11212
|
+
pathPrefix: string;
|
|
11213
|
+
}
|
|
11214
|
+
/**
|
|
11215
|
+
* A device bound session's inclusion rules.
|
|
11216
|
+
*/
|
|
11217
|
+
export interface DeviceBoundSessionInclusionRules {
|
|
11218
|
+
/**
|
|
11219
|
+
* See comments on `net::device_bound_sessions::SessionInclusionRules::origin_`.
|
|
11220
|
+
*/
|
|
11221
|
+
origin: string;
|
|
11222
|
+
/**
|
|
11223
|
+
* Whether the whole site is included. See comments on
|
|
11224
|
+
`net::device_bound_sessions::SessionInclusionRules::include_site_` for more
|
|
11225
|
+
details; this boolean is true if that value is populated.
|
|
11226
|
+
*/
|
|
11227
|
+
includeSite: boolean;
|
|
11228
|
+
/**
|
|
11229
|
+
* See comments on `net::device_bound_sessions::SessionInclusionRules::url_rules_`.
|
|
11230
|
+
*/
|
|
11231
|
+
urlRules: DeviceBoundSessionUrlRule[];
|
|
11232
|
+
}
|
|
11233
|
+
/**
|
|
11234
|
+
* A device bound session.
|
|
11235
|
+
*/
|
|
11236
|
+
export interface DeviceBoundSession {
|
|
11237
|
+
/**
|
|
11238
|
+
* The site and session ID of the session.
|
|
11239
|
+
*/
|
|
11240
|
+
key: DeviceBoundSessionKey;
|
|
11241
|
+
/**
|
|
11242
|
+
* See comments on `net::device_bound_sessions::Session::refresh_url_`.
|
|
11243
|
+
*/
|
|
11244
|
+
refreshUrl: string;
|
|
11245
|
+
/**
|
|
11246
|
+
* See comments on `net::device_bound_sessions::Session::inclusion_rules_`.
|
|
11247
|
+
*/
|
|
11248
|
+
inclusionRules: DeviceBoundSessionInclusionRules;
|
|
11249
|
+
/**
|
|
11250
|
+
* See comments on `net::device_bound_sessions::Session::cookie_cravings_`.
|
|
11251
|
+
*/
|
|
11252
|
+
cookieCravings: DeviceBoundSessionCookieCraving[];
|
|
11253
|
+
/**
|
|
11254
|
+
* See comments on `net::device_bound_sessions::Session::expiry_date_`.
|
|
11255
|
+
*/
|
|
11256
|
+
expiryDate: Network.TimeSinceEpoch;
|
|
11257
|
+
/**
|
|
11258
|
+
* See comments on `net::device_bound_sessions::Session::cached_challenge__`.
|
|
11259
|
+
*/
|
|
11260
|
+
cachedChallenge?: string;
|
|
11261
|
+
/**
|
|
11262
|
+
* See comments on `net::device_bound_sessions::Session::allowed_refresh_initiators_`.
|
|
11263
|
+
*/
|
|
11264
|
+
allowedRefreshInitiators: string[];
|
|
11265
|
+
}
|
|
11266
|
+
/**
|
|
11267
|
+
* A unique identifier for a device bound session event.
|
|
11268
|
+
*/
|
|
11269
|
+
export type DeviceBoundSessionEventId = string;
|
|
11270
|
+
/**
|
|
11271
|
+
* A fetch result for a device bound session creation or refresh.
|
|
11272
|
+
*/
|
|
11273
|
+
export type DeviceBoundSessionFetchResult = "Success"|"KeyError"|"SigningError"|"ServerRequestedTermination"|"InvalidSessionId"|"InvalidChallenge"|"TooManyChallenges"|"InvalidFetcherUrl"|"InvalidRefreshUrl"|"TransientHttpError"|"ScopeOriginSameSiteMismatch"|"RefreshUrlSameSiteMismatch"|"MismatchedSessionId"|"MissingScope"|"NoCredentials"|"SubdomainRegistrationWellKnownUnavailable"|"SubdomainRegistrationUnauthorized"|"SubdomainRegistrationWellKnownMalformed"|"SessionProviderWellKnownUnavailable"|"RelyingPartyWellKnownUnavailable"|"FederatedKeyThumbprintMismatch"|"InvalidFederatedSessionUrl"|"InvalidFederatedKey"|"TooManyRelyingOriginLabels"|"BoundCookieSetForbidden"|"NetError"|"ProxyError"|"EmptySessionConfig"|"InvalidCredentialsConfig"|"InvalidCredentialsType"|"InvalidCredentialsEmptyName"|"InvalidCredentialsCookie"|"PersistentHttpError"|"RegistrationAttemptedChallenge"|"InvalidScopeOrigin"|"ScopeOriginContainsPath"|"RefreshInitiatorNotString"|"RefreshInitiatorInvalidHostPattern"|"InvalidScopeSpecification"|"MissingScopeSpecificationType"|"EmptyScopeSpecificationDomain"|"EmptyScopeSpecificationPath"|"InvalidScopeSpecificationType"|"InvalidScopeIncludeSite"|"MissingScopeIncludeSite"|"FederatedNotAuthorizedByProvider"|"FederatedNotAuthorizedByRelyingParty"|"SessionProviderWellKnownMalformed"|"SessionProviderWellKnownHasProviderOrigin"|"RelyingPartyWellKnownMalformed"|"RelyingPartyWellKnownHasRelyingOrigins"|"InvalidFederatedSessionProviderSessionMissing"|"InvalidFederatedSessionWrongProviderOrigin"|"InvalidCredentialsCookieCreationTime"|"InvalidCredentialsCookieName"|"InvalidCredentialsCookieParsing"|"InvalidCredentialsCookieUnpermittedAttribute"|"InvalidCredentialsCookieInvalidDomain"|"InvalidCredentialsCookiePrefix"|"InvalidScopeRulePath"|"InvalidScopeRuleHostPattern"|"ScopeRuleOriginScopedHostPatternMismatch"|"ScopeRuleSiteScopedHostPatternMismatch"|"SigningQuotaExceeded"|"InvalidConfigJson"|"InvalidFederatedSessionProviderFailedToRestoreKey"|"FailedToUnwrapKey"|"SessionDeletedDuringRefresh";
|
|
11274
|
+
/**
|
|
11275
|
+
* Session event details specific to creation.
|
|
11276
|
+
*/
|
|
11277
|
+
export interface CreationEventDetails {
|
|
11278
|
+
/**
|
|
11279
|
+
* The result of the fetch attempt.
|
|
11280
|
+
*/
|
|
11281
|
+
fetchResult: DeviceBoundSessionFetchResult;
|
|
11282
|
+
/**
|
|
11283
|
+
* The session if there was a newly created session. This is populated for
|
|
11284
|
+
all successful creation events.
|
|
11285
|
+
*/
|
|
11286
|
+
newSession?: DeviceBoundSession;
|
|
11287
|
+
}
|
|
11288
|
+
/**
|
|
11289
|
+
* Session event details specific to refresh.
|
|
11290
|
+
*/
|
|
11291
|
+
export interface RefreshEventDetails {
|
|
11292
|
+
/**
|
|
11293
|
+
* The result of a refresh.
|
|
11294
|
+
*/
|
|
11295
|
+
refreshResult: "Refreshed"|"InitializedService"|"Unreachable"|"ServerError"|"RefreshQuotaExceeded"|"FatalError"|"SigningQuotaExceeded";
|
|
11296
|
+
/**
|
|
11297
|
+
* If there was a fetch attempt, the result of that.
|
|
11298
|
+
*/
|
|
11299
|
+
fetchResult?: DeviceBoundSessionFetchResult;
|
|
11300
|
+
/**
|
|
11301
|
+
* The session display if there was a newly created session. This is populated
|
|
11302
|
+
for any refresh event that modifies the session config.
|
|
11303
|
+
*/
|
|
11304
|
+
newSession?: DeviceBoundSession;
|
|
11305
|
+
/**
|
|
11306
|
+
* See comments on `net::device_bound_sessions::RefreshEventResult::was_fully_proactive_refresh`.
|
|
11307
|
+
*/
|
|
11308
|
+
wasFullyProactiveRefresh: boolean;
|
|
11309
|
+
}
|
|
11310
|
+
/**
|
|
11311
|
+
* Session event details specific to termination.
|
|
11312
|
+
*/
|
|
11313
|
+
export interface TerminationEventDetails {
|
|
11314
|
+
/**
|
|
11315
|
+
* The reason for a session being deleted.
|
|
11316
|
+
*/
|
|
11317
|
+
deletionReason: "Expired"|"FailedToRestoreKey"|"FailedToUnwrapKey"|"StoragePartitionCleared"|"ClearBrowsingData"|"ServerRequested"|"InvalidSessionParams"|"RefreshFatalError";
|
|
11318
|
+
}
|
|
11319
|
+
/**
|
|
11320
|
+
* Session event details specific to challenges.
|
|
11321
|
+
*/
|
|
11322
|
+
export interface ChallengeEventDetails {
|
|
11323
|
+
/**
|
|
11324
|
+
* The result of a challenge.
|
|
11325
|
+
*/
|
|
11326
|
+
challengeResult: "Success"|"NoSessionId"|"NoSessionMatch"|"CantSetBoundCookie";
|
|
11327
|
+
/**
|
|
11328
|
+
* The challenge set.
|
|
11329
|
+
*/
|
|
11330
|
+
challenge: string;
|
|
11331
|
+
}
|
|
11092
11332
|
/**
|
|
11093
11333
|
* An object providing the result of a network resource load.
|
|
11094
11334
|
*/
|
|
@@ -11341,6 +11581,10 @@ for the request which was just redirected.
|
|
|
11341
11581
|
* Whether the request is initiated by a user gesture. Defaults to false.
|
|
11342
11582
|
*/
|
|
11343
11583
|
hasUserGesture?: boolean;
|
|
11584
|
+
/**
|
|
11585
|
+
* The render blocking behavior of the request.
|
|
11586
|
+
*/
|
|
11587
|
+
renderBlockingBehavior?: RenderBlockingBehavior;
|
|
11344
11588
|
}
|
|
11345
11589
|
/**
|
|
11346
11590
|
* Fired when resource loading priority is changed
|
|
@@ -11634,6 +11878,14 @@ or were emitted for this request.
|
|
|
11634
11878
|
data: binary;
|
|
11635
11879
|
timestamp: MonotonicTime;
|
|
11636
11880
|
}
|
|
11881
|
+
export type directUDPSocketJoinedMulticastGroupPayload = {
|
|
11882
|
+
identifier: RequestId;
|
|
11883
|
+
IPAddress: string;
|
|
11884
|
+
}
|
|
11885
|
+
export type directUDPSocketLeftMulticastGroupPayload = {
|
|
11886
|
+
identifier: RequestId;
|
|
11887
|
+
IPAddress: string;
|
|
11888
|
+
}
|
|
11637
11889
|
/**
|
|
11638
11890
|
* Fired upon direct_socket.UDPSocket creation.
|
|
11639
11891
|
*/
|
|
@@ -11851,30 +12103,45 @@ And after 'enableReportingApi' for all existing reports.
|
|
|
11851
12103
|
origin: string;
|
|
11852
12104
|
endpoints: ReportingApiEndpoint[];
|
|
11853
12105
|
}
|
|
11854
|
-
|
|
11855
12106
|
/**
|
|
11856
|
-
*
|
|
11857
|
-
or reason it is not active.
|
|
12107
|
+
* Triggered when the initial set of device bound sessions is added.
|
|
11858
12108
|
*/
|
|
11859
|
-
export type
|
|
11860
|
-
}
|
|
11861
|
-
export type getIPProtectionProxyStatusReturnValue = {
|
|
12109
|
+
export type deviceBoundSessionsAddedPayload = {
|
|
11862
12110
|
/**
|
|
11863
|
-
*
|
|
12111
|
+
* The device bound sessions.
|
|
11864
12112
|
*/
|
|
11865
|
-
|
|
12113
|
+
sessions: DeviceBoundSession[];
|
|
11866
12114
|
}
|
|
11867
12115
|
/**
|
|
11868
|
-
*
|
|
12116
|
+
* Triggered when a device bound session event occurs.
|
|
11869
12117
|
*/
|
|
11870
|
-
export type
|
|
12118
|
+
export type deviceBoundSessionEventOccurredPayload = {
|
|
11871
12119
|
/**
|
|
11872
|
-
*
|
|
12120
|
+
* A unique identifier for this session event.
|
|
11873
12121
|
*/
|
|
11874
|
-
|
|
11875
|
-
|
|
11876
|
-
|
|
12122
|
+
eventId: DeviceBoundSessionEventId;
|
|
12123
|
+
/**
|
|
12124
|
+
* The site this session event is associated with.
|
|
12125
|
+
*/
|
|
12126
|
+
site: string;
|
|
12127
|
+
/**
|
|
12128
|
+
* Whether this event was considered successful.
|
|
12129
|
+
*/
|
|
12130
|
+
succeeded: boolean;
|
|
12131
|
+
/**
|
|
12132
|
+
* The session ID this event is associated with. May not be populated for
|
|
12133
|
+
failed events.
|
|
12134
|
+
*/
|
|
12135
|
+
sessionId?: string;
|
|
12136
|
+
/**
|
|
12137
|
+
* The below are the different session event type details. Exactly one is populated.
|
|
12138
|
+
*/
|
|
12139
|
+
creationEventDetails?: CreationEventDetails;
|
|
12140
|
+
refreshEventDetails?: RefreshEventDetails;
|
|
12141
|
+
terminationEventDetails?: TerminationEventDetails;
|
|
12142
|
+
challengeEventDetails?: ChallengeEventDetails;
|
|
11877
12143
|
}
|
|
12144
|
+
|
|
11878
12145
|
/**
|
|
11879
12146
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
|
11880
12147
|
*/
|
|
@@ -12136,12 +12403,31 @@ requests affected by a rule.
|
|
|
12136
12403
|
/**
|
|
12137
12404
|
* Enable storing response bodies outside of renderer, so that these survive
|
|
12138
12405
|
a cross-process navigation. Requires maxTotalBufferSize to be set.
|
|
12139
|
-
Currently defaults to false.
|
|
12406
|
+
Currently defaults to false. This field is being deprecated in favor of the dedicated
|
|
12407
|
+
configureDurableMessages command, due to the possibility of deadlocks when awaiting
|
|
12408
|
+
Network.enable before issuing Runtime.runIfWaitingForDebugger.
|
|
12140
12409
|
*/
|
|
12141
12410
|
enableDurableMessages?: boolean;
|
|
12142
12411
|
}
|
|
12143
12412
|
export type enableReturnValue = {
|
|
12144
12413
|
}
|
|
12414
|
+
/**
|
|
12415
|
+
* Configures storing response bodies outside of renderer, so that these survive
|
|
12416
|
+
a cross-process navigation.
|
|
12417
|
+
If maxTotalBufferSize is not set, durable messages are disabled.
|
|
12418
|
+
*/
|
|
12419
|
+
export type configureDurableMessagesParameters = {
|
|
12420
|
+
/**
|
|
12421
|
+
* Buffer size in bytes to use when preserving network payloads (XHRs, etc).
|
|
12422
|
+
*/
|
|
12423
|
+
maxTotalBufferSize?: number;
|
|
12424
|
+
/**
|
|
12425
|
+
* Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
|
|
12426
|
+
*/
|
|
12427
|
+
maxResourceBufferSize?: number;
|
|
12428
|
+
}
|
|
12429
|
+
export type configureDurableMessagesReturnValue = {
|
|
12430
|
+
}
|
|
12145
12431
|
/**
|
|
12146
12432
|
* Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
|
12147
12433
|
information in the `cookies` field.
|
|
@@ -12218,6 +12504,10 @@ the URLs of the page and all of its subframes.
|
|
|
12218
12504
|
* Request body string, omitting files from multipart requests
|
|
12219
12505
|
*/
|
|
12220
12506
|
postData: string;
|
|
12507
|
+
/**
|
|
12508
|
+
* True, if content was sent as base64.
|
|
12509
|
+
*/
|
|
12510
|
+
base64Encoded: boolean;
|
|
12221
12511
|
}
|
|
12222
12512
|
/**
|
|
12223
12513
|
* Returns content served for the given currently intercepted request.
|
|
@@ -12507,6 +12797,32 @@ Enabling triggers 'reportingApiReportAdded' for all existing reports.
|
|
|
12507
12797
|
}
|
|
12508
12798
|
export type enableReportingApiReturnValue = {
|
|
12509
12799
|
}
|
|
12800
|
+
/**
|
|
12801
|
+
* Sets up tracking device bound sessions and fetching of initial set of sessions.
|
|
12802
|
+
*/
|
|
12803
|
+
export type enableDeviceBoundSessionsParameters = {
|
|
12804
|
+
/**
|
|
12805
|
+
* Whether to enable or disable events.
|
|
12806
|
+
*/
|
|
12807
|
+
enable: boolean;
|
|
12808
|
+
}
|
|
12809
|
+
export type enableDeviceBoundSessionsReturnValue = {
|
|
12810
|
+
}
|
|
12811
|
+
/**
|
|
12812
|
+
* Fetches the schemeful site for a specific origin.
|
|
12813
|
+
*/
|
|
12814
|
+
export type fetchSchemefulSiteParameters = {
|
|
12815
|
+
/**
|
|
12816
|
+
* The URL origin.
|
|
12817
|
+
*/
|
|
12818
|
+
origin: string;
|
|
12819
|
+
}
|
|
12820
|
+
export type fetchSchemefulSiteReturnValue = {
|
|
12821
|
+
/**
|
|
12822
|
+
* The corresponding schemeful site.
|
|
12823
|
+
*/
|
|
12824
|
+
schemefulSite: string;
|
|
12825
|
+
}
|
|
12510
12826
|
/**
|
|
12511
12827
|
* Fetches the resource and returns the content.
|
|
12512
12828
|
*/
|
|
@@ -12553,7 +12869,7 @@ Page reload is required before the new cookie behavior will be observed
|
|
|
12553
12869
|
/**
|
|
12554
12870
|
* This domain provides various functionality related to drawing atop the inspected page.
|
|
12555
12871
|
*/
|
|
12556
|
-
export
|
|
12872
|
+
export namespace Overlay {
|
|
12557
12873
|
/**
|
|
12558
12874
|
* Configuration data for drawing the source order of an elements children.
|
|
12559
12875
|
*/
|
|
@@ -13379,7 +13695,7 @@ Backend then generates 'inspectNodeRequested' event upon element selection.
|
|
|
13379
13695
|
/**
|
|
13380
13696
|
* This domain allows interacting with the browser to control PWAs.
|
|
13381
13697
|
*/
|
|
13382
|
-
export
|
|
13698
|
+
export namespace PWA {
|
|
13383
13699
|
/**
|
|
13384
13700
|
* The following types are the replica of
|
|
13385
13701
|
https://crsrc.org/c/chrome/browser/web_applications/proto/web_app_os_integration_state.proto;drc=9910d3be894c8f142c977ba1023f30a656bc13fc;l=67
|
|
@@ -13550,7 +13866,7 @@ supported yet.
|
|
|
13550
13866
|
/**
|
|
13551
13867
|
* Actions and events related to the inspected page belong to the page domain.
|
|
13552
13868
|
*/
|
|
13553
|
-
export
|
|
13869
|
+
export namespace Page {
|
|
13554
13870
|
/**
|
|
13555
13871
|
* Unique frame identifier.
|
|
13556
13872
|
*/
|
|
@@ -13616,7 +13932,7 @@ available.
|
|
|
13616
13932
|
in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
13617
13933
|
LINT.IfChange(PermissionsPolicyFeature)
|
|
13618
13934
|
*/
|
|
13619
|
-
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network-access"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"
|
|
13935
|
+
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autofill"|"autoplay"|"bluetooth"|"browsing-topics"|"camera"|"captured-surface-control"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-prefers-reduced-motion"|"ch-prefers-reduced-transparency"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-high-entropy-values"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-form-factors"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"compute-pressure"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network"|"local-network-access"|"loopback-network"|"magnetometer"|"manual-text"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
|
|
13620
13936
|
/**
|
|
13621
13937
|
* Reason for a permissions policy feature to be disabled.
|
|
13622
13938
|
*/
|
|
@@ -15650,9 +15966,27 @@ TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets
|
|
|
15650
15966
|
}
|
|
15651
15967
|
export type setPrerenderingAllowedReturnValue = {
|
|
15652
15968
|
}
|
|
15969
|
+
/**
|
|
15970
|
+
* Get the annotated page content for the main frame.
|
|
15971
|
+
This is an experimental command that is subject to change.
|
|
15972
|
+
*/
|
|
15973
|
+
export type getAnnotatedPageContentParameters = {
|
|
15974
|
+
/**
|
|
15975
|
+
* Whether to include actionable information. Defaults to true.
|
|
15976
|
+
*/
|
|
15977
|
+
includeActionableInformation?: boolean;
|
|
15978
|
+
}
|
|
15979
|
+
export type getAnnotatedPageContentReturnValue = {
|
|
15980
|
+
/**
|
|
15981
|
+
* The annotated page content as a base64 encoded protobuf.
|
|
15982
|
+
The format is defined by the `AnnotatedPageContent` message in
|
|
15983
|
+
components/optimization_guide/proto/features/common_quality_data.proto
|
|
15984
|
+
*/
|
|
15985
|
+
content: binary;
|
|
15986
|
+
}
|
|
15653
15987
|
}
|
|
15654
15988
|
|
|
15655
|
-
export
|
|
15989
|
+
export namespace Performance {
|
|
15656
15990
|
/**
|
|
15657
15991
|
* Run-time execution metric.
|
|
15658
15992
|
*/
|
|
@@ -15729,7 +16063,7 @@ this method while metrics collection is enabled returns an error.
|
|
|
15729
16063
|
* Reporting of performance timeline events, as specified in
|
|
15730
16064
|
https://w3c.github.io/performance-timeline/#dom-performanceobserver.
|
|
15731
16065
|
*/
|
|
15732
|
-
export
|
|
16066
|
+
export namespace PerformanceTimeline {
|
|
15733
16067
|
/**
|
|
15734
16068
|
* See https://github.com/WICG/LargestContentfulPaint and largest_contentful_paint.idl
|
|
15735
16069
|
*/
|
|
@@ -15818,7 +16152,7 @@ Note that not all types exposed to the web platform are currently supported.
|
|
|
15818
16152
|
}
|
|
15819
16153
|
}
|
|
15820
16154
|
|
|
15821
|
-
export
|
|
16155
|
+
export namespace Preload {
|
|
15822
16156
|
/**
|
|
15823
16157
|
* Unique id
|
|
15824
16158
|
*/
|
|
@@ -16010,7 +16344,7 @@ that is incompatible with prerender and has caused the cancellation of the attem
|
|
|
16010
16344
|
}
|
|
16011
16345
|
}
|
|
16012
16346
|
|
|
16013
|
-
export
|
|
16347
|
+
export namespace Security {
|
|
16014
16348
|
/**
|
|
16015
16349
|
* An internal certificate ID value.
|
|
16016
16350
|
*/
|
|
@@ -16315,7 +16649,7 @@ be handled by the DevTools client and should be answered with `handleCertificate
|
|
|
16315
16649
|
}
|
|
16316
16650
|
}
|
|
16317
16651
|
|
|
16318
|
-
export
|
|
16652
|
+
export namespace ServiceWorker {
|
|
16319
16653
|
export type RegistrationID = string;
|
|
16320
16654
|
/**
|
|
16321
16655
|
* ServiceWorker registration.
|
|
@@ -16437,7 +16771,7 @@ For cached script it is the last time the cache entry was validated.
|
|
|
16437
16771
|
}
|
|
16438
16772
|
}
|
|
16439
16773
|
|
|
16440
|
-
export
|
|
16774
|
+
export namespace Storage {
|
|
16441
16775
|
export type SerializedStorageKey = string;
|
|
16442
16776
|
/**
|
|
16443
16777
|
* Enum of possible storage types.
|
|
@@ -17542,7 +17876,7 @@ party URL, only the first-party URL is returned in the array.
|
|
|
17542
17876
|
/**
|
|
17543
17877
|
* The SystemInfo domain defines methods and events for querying low-level system information.
|
|
17544
17878
|
*/
|
|
17545
|
-
export
|
|
17879
|
+
export namespace SystemInfo {
|
|
17546
17880
|
/**
|
|
17547
17881
|
* Describes a single graphics processor (GPU).
|
|
17548
17882
|
*/
|
|
@@ -17640,28 +17974,6 @@ resolution and maximum framerate.
|
|
|
17640
17974
|
* Image format of a given image.
|
|
17641
17975
|
*/
|
|
17642
17976
|
export type ImageType = "jpeg"|"webp"|"unknown";
|
|
17643
|
-
/**
|
|
17644
|
-
* Describes a supported image decoding profile with its associated minimum and
|
|
17645
|
-
maximum resolutions and subsampling.
|
|
17646
|
-
*/
|
|
17647
|
-
export interface ImageDecodeAcceleratorCapability {
|
|
17648
|
-
/**
|
|
17649
|
-
* Image coded, e.g. Jpeg.
|
|
17650
|
-
*/
|
|
17651
|
-
imageType: ImageType;
|
|
17652
|
-
/**
|
|
17653
|
-
* Maximum supported dimensions of the image in pixels.
|
|
17654
|
-
*/
|
|
17655
|
-
maxDimensions: Size;
|
|
17656
|
-
/**
|
|
17657
|
-
* Minimum supported dimensions of the image in pixels.
|
|
17658
|
-
*/
|
|
17659
|
-
minDimensions: Size;
|
|
17660
|
-
/**
|
|
17661
|
-
* Optional array of supported subsampling formats, e.g. 4:2:0, if known.
|
|
17662
|
-
*/
|
|
17663
|
-
subsamplings: SubsamplingFormat[];
|
|
17664
|
-
}
|
|
17665
17977
|
/**
|
|
17666
17978
|
* Provides information about the GPU(s) on the system.
|
|
17667
17979
|
*/
|
|
@@ -17690,10 +18002,6 @@ maximum resolutions and subsampling.
|
|
|
17690
18002
|
* Supported accelerated video encoding capabilities.
|
|
17691
18003
|
*/
|
|
17692
18004
|
videoEncoding: VideoEncodeAcceleratorCapability[];
|
|
17693
|
-
/**
|
|
17694
|
-
* Supported accelerated image decoding capabilities.
|
|
17695
|
-
*/
|
|
17696
|
-
imageDecoding: ImageDecodeAcceleratorCapability[];
|
|
17697
18005
|
}
|
|
17698
18006
|
/**
|
|
17699
18007
|
* Represents process info.
|
|
@@ -17766,7 +18074,7 @@ supported.
|
|
|
17766
18074
|
/**
|
|
17767
18075
|
* Supports additional targets discovery and allows to attach to them.
|
|
17768
18076
|
*/
|
|
17769
|
-
export
|
|
18077
|
+
export namespace Target {
|
|
17770
18078
|
export type TargetID = string;
|
|
17771
18079
|
/**
|
|
17772
18080
|
* Unique identifier of attached debugging session.
|
|
@@ -18023,6 +18331,10 @@ Parts of the URL other than those constituting origin are ignored.
|
|
|
18023
18331
|
* An array of browser context ids.
|
|
18024
18332
|
*/
|
|
18025
18333
|
browserContextIds: Browser.BrowserContextID[];
|
|
18334
|
+
/**
|
|
18335
|
+
* The id of the default browser context if available.
|
|
18336
|
+
*/
|
|
18337
|
+
defaultBrowserContextId?: Browser.BrowserContextID;
|
|
18026
18338
|
}
|
|
18027
18339
|
/**
|
|
18028
18340
|
* Creates a new page.
|
|
@@ -18239,6 +18551,22 @@ to run paused targets.
|
|
|
18239
18551
|
}
|
|
18240
18552
|
export type setRemoteLocationsReturnValue = {
|
|
18241
18553
|
}
|
|
18554
|
+
/**
|
|
18555
|
+
* Gets the targetId of the DevTools page target opened for the given target
|
|
18556
|
+
(if any).
|
|
18557
|
+
*/
|
|
18558
|
+
export type getDevToolsTargetParameters = {
|
|
18559
|
+
/**
|
|
18560
|
+
* Page or tab target ID.
|
|
18561
|
+
*/
|
|
18562
|
+
targetId: TargetID;
|
|
18563
|
+
}
|
|
18564
|
+
export type getDevToolsTargetReturnValue = {
|
|
18565
|
+
/**
|
|
18566
|
+
* The targetId of DevTools page target if exists.
|
|
18567
|
+
*/
|
|
18568
|
+
targetId?: TargetID;
|
|
18569
|
+
}
|
|
18242
18570
|
/**
|
|
18243
18571
|
* Opens a DevTools window for the target.
|
|
18244
18572
|
*/
|
|
@@ -18247,6 +18575,12 @@ to run paused targets.
|
|
|
18247
18575
|
* This can be the page or tab target ID.
|
|
18248
18576
|
*/
|
|
18249
18577
|
targetId: TargetID;
|
|
18578
|
+
/**
|
|
18579
|
+
* The id of the panel we want DevTools to open initially. Currently
|
|
18580
|
+
supported panels are elements, console, network, sources, resources
|
|
18581
|
+
and performance.
|
|
18582
|
+
*/
|
|
18583
|
+
panelId?: string;
|
|
18250
18584
|
}
|
|
18251
18585
|
export type openDevToolsReturnValue = {
|
|
18252
18586
|
/**
|
|
@@ -18259,7 +18593,7 @@ to run paused targets.
|
|
|
18259
18593
|
/**
|
|
18260
18594
|
* The Tethering domain defines methods and events for browser port binding.
|
|
18261
18595
|
*/
|
|
18262
|
-
export
|
|
18596
|
+
export namespace Tethering {
|
|
18263
18597
|
|
|
18264
18598
|
/**
|
|
18265
18599
|
* Informs that port was successfully bound and got a specified connection id.
|
|
@@ -18299,7 +18633,7 @@ to run paused targets.
|
|
|
18299
18633
|
}
|
|
18300
18634
|
}
|
|
18301
18635
|
|
|
18302
|
-
export
|
|
18636
|
+
export namespace Tracing {
|
|
18303
18637
|
/**
|
|
18304
18638
|
* Configuration for memory dump. Used only when "memory-infra" category is enabled.
|
|
18305
18639
|
*/
|
|
@@ -18432,6 +18766,17 @@ buffer wrapped around.
|
|
|
18432
18766
|
*/
|
|
18433
18767
|
categories: string[];
|
|
18434
18768
|
}
|
|
18769
|
+
/**
|
|
18770
|
+
* Return a descriptor for all available tracing categories.
|
|
18771
|
+
*/
|
|
18772
|
+
export type getTrackEventDescriptorParameters = {
|
|
18773
|
+
}
|
|
18774
|
+
export type getTrackEventDescriptorReturnValue = {
|
|
18775
|
+
/**
|
|
18776
|
+
* Base64-encoded serialized perfetto.protos.TrackEventDescriptor protobuf message.
|
|
18777
|
+
*/
|
|
18778
|
+
descriptor: binary;
|
|
18779
|
+
}
|
|
18435
18780
|
/**
|
|
18436
18781
|
* Record a clock sync marker in the trace.
|
|
18437
18782
|
*/
|
|
@@ -18517,7 +18862,7 @@ are ignored.
|
|
|
18517
18862
|
* This domain allows inspection of Web Audio API.
|
|
18518
18863
|
https://webaudio.github.io/web-audio-api/
|
|
18519
18864
|
*/
|
|
18520
|
-
export
|
|
18865
|
+
export namespace WebAudio {
|
|
18521
18866
|
/**
|
|
18522
18867
|
* An unique ID for a graph object (AudioContext, AudioNode, AudioParam) in Web Audio API
|
|
18523
18868
|
*/
|
|
@@ -18754,7 +19099,7 @@ capacity and glitch may occur.
|
|
|
18754
19099
|
* This domain allows configuring virtual authenticators to test the WebAuthn
|
|
18755
19100
|
API.
|
|
18756
19101
|
*/
|
|
18757
|
-
export
|
|
19102
|
+
export namespace WebAuthn {
|
|
18758
19103
|
export type AuthenticatorId = string;
|
|
18759
19104
|
export type AuthenticatorProtocol = "u2f"|"ctap2";
|
|
18760
19105
|
export type Ctap2Version = "ctap2_0"|"ctap2_1";
|
|
@@ -19051,7 +19396,7 @@ https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
|
|
|
19051
19396
|
/**
|
|
19052
19397
|
* This domain is deprecated - use Runtime or Log instead.
|
|
19053
19398
|
*/
|
|
19054
|
-
export
|
|
19399
|
+
export namespace Console {
|
|
19055
19400
|
/**
|
|
19056
19401
|
* Console message.
|
|
19057
19402
|
*/
|
|
@@ -19120,7 +19465,7 @@ https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
|
|
|
19120
19465
|
* Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing
|
|
19121
19466
|
breakpoints, stepping through execution, exploring stack traces, etc.
|
|
19122
19467
|
*/
|
|
19123
|
-
export
|
|
19468
|
+
export namespace Debugger {
|
|
19124
19469
|
/**
|
|
19125
19470
|
* Breakpoint identifier.
|
|
19126
19471
|
*/
|
|
@@ -20147,7 +20492,7 @@ before next pause.
|
|
|
20147
20492
|
}
|
|
20148
20493
|
}
|
|
20149
20494
|
|
|
20150
|
-
export
|
|
20495
|
+
export namespace HeapProfiler {
|
|
20151
20496
|
/**
|
|
20152
20497
|
* Heap snapshot object id.
|
|
20153
20498
|
*/
|
|
@@ -20376,7 +20721,7 @@ Deprecated in favor of `exposeInternals`.
|
|
|
20376
20721
|
}
|
|
20377
20722
|
}
|
|
20378
20723
|
|
|
20379
|
-
export
|
|
20724
|
+
export namespace Profiler {
|
|
20380
20725
|
/**
|
|
20381
20726
|
* Profile node. Holds callsite information, execution statistics and child nodes.
|
|
20382
20727
|
*/
|
|
@@ -20646,7 +20991,7 @@ and unique identifier that can be used for further object reference. Original ob
|
|
|
20646
20991
|
maintained in memory unless they are either explicitly released or are released along with the
|
|
20647
20992
|
other objects in their object group.
|
|
20648
20993
|
*/
|
|
20649
|
-
export
|
|
20994
|
+
export namespace Runtime {
|
|
20650
20995
|
/**
|
|
20651
20996
|
* Unique script identifier.
|
|
20652
20997
|
*/
|
|
@@ -21705,7 +22050,7 @@ Error was thrown.
|
|
|
21705
22050
|
/**
|
|
21706
22051
|
* This domain is deprecated.
|
|
21707
22052
|
*/
|
|
21708
|
-
export
|
|
22053
|
+
export namespace Schema {
|
|
21709
22054
|
/**
|
|
21710
22055
|
* Description of the protocol domain.
|
|
21711
22056
|
*/
|
|
@@ -21734,7 +22079,7 @@ Error was thrown.
|
|
|
21734
22079
|
}
|
|
21735
22080
|
}
|
|
21736
22081
|
|
|
21737
|
-
export
|
|
22082
|
+
export type Events = {
|
|
21738
22083
|
"Accessibility.loadComplete": Accessibility.loadCompletePayload;
|
|
21739
22084
|
"Accessibility.nodesUpdated": Accessibility.nodesUpdatedPayload;
|
|
21740
22085
|
"Animation.animationCanceled": Animation.animationCanceledPayload;
|
|
@@ -21759,6 +22104,7 @@ Error was thrown.
|
|
|
21759
22104
|
"Cast.sinksUpdated": Cast.sinksUpdatedPayload;
|
|
21760
22105
|
"Cast.issueUpdated": Cast.issueUpdatedPayload;
|
|
21761
22106
|
"DOM.attributeModified": DOM.attributeModifiedPayload;
|
|
22107
|
+
"DOM.adoptedStyleSheetsModified": DOM.adoptedStyleSheetsModifiedPayload;
|
|
21762
22108
|
"DOM.attributeRemoved": DOM.attributeRemovedPayload;
|
|
21763
22109
|
"DOM.characterDataModified": DOM.characterDataModifiedPayload;
|
|
21764
22110
|
"DOM.childNodeCountUpdated": DOM.childNodeCountUpdatedPayload;
|
|
@@ -21824,6 +22170,8 @@ Error was thrown.
|
|
|
21824
22170
|
"Network.directTCPSocketClosed": Network.directTCPSocketClosedPayload;
|
|
21825
22171
|
"Network.directTCPSocketChunkSent": Network.directTCPSocketChunkSentPayload;
|
|
21826
22172
|
"Network.directTCPSocketChunkReceived": Network.directTCPSocketChunkReceivedPayload;
|
|
22173
|
+
"Network.directUDPSocketJoinedMulticastGroup": Network.directUDPSocketJoinedMulticastGroupPayload;
|
|
22174
|
+
"Network.directUDPSocketLeftMulticastGroup": Network.directUDPSocketLeftMulticastGroupPayload;
|
|
21827
22175
|
"Network.directUDPSocketCreated": Network.directUDPSocketCreatedPayload;
|
|
21828
22176
|
"Network.directUDPSocketOpened": Network.directUDPSocketOpenedPayload;
|
|
21829
22177
|
"Network.directUDPSocketAborted": Network.directUDPSocketAbortedPayload;
|
|
@@ -21838,6 +22186,8 @@ Error was thrown.
|
|
|
21838
22186
|
"Network.reportingApiReportAdded": Network.reportingApiReportAddedPayload;
|
|
21839
22187
|
"Network.reportingApiReportUpdated": Network.reportingApiReportUpdatedPayload;
|
|
21840
22188
|
"Network.reportingApiEndpointsChangedForOrigin": Network.reportingApiEndpointsChangedForOriginPayload;
|
|
22189
|
+
"Network.deviceBoundSessionsAdded": Network.deviceBoundSessionsAddedPayload;
|
|
22190
|
+
"Network.deviceBoundSessionEventOccurred": Network.deviceBoundSessionEventOccurredPayload;
|
|
21841
22191
|
"Overlay.inspectNodeRequested": Overlay.inspectNodeRequestedPayload;
|
|
21842
22192
|
"Overlay.nodeHighlightRequested": Overlay.nodeHighlightRequestedPayload;
|
|
21843
22193
|
"Overlay.screenshotRequested": Overlay.screenshotRequestedPayload;
|
|
@@ -21950,6 +22300,227 @@ Error was thrown.
|
|
|
21950
22300
|
"Runtime.executionContextsCleared": Runtime.executionContextsClearedPayload;
|
|
21951
22301
|
"Runtime.inspectRequested": Runtime.inspectRequestedPayload;
|
|
21952
22302
|
}
|
|
22303
|
+
export type EventMap = {
|
|
22304
|
+
["Accessibility.loadComplete"]: [Accessibility.loadCompletePayload];
|
|
22305
|
+
["Accessibility.nodesUpdated"]: [Accessibility.nodesUpdatedPayload];
|
|
22306
|
+
["Animation.animationCanceled"]: [Animation.animationCanceledPayload];
|
|
22307
|
+
["Animation.animationCreated"]: [Animation.animationCreatedPayload];
|
|
22308
|
+
["Animation.animationStarted"]: [Animation.animationStartedPayload];
|
|
22309
|
+
["Animation.animationUpdated"]: [Animation.animationUpdatedPayload];
|
|
22310
|
+
["Audits.issueAdded"]: [Audits.issueAddedPayload];
|
|
22311
|
+
["Autofill.addressFormFilled"]: [Autofill.addressFormFilledPayload];
|
|
22312
|
+
["BackgroundService.recordingStateChanged"]: [BackgroundService.recordingStateChangedPayload];
|
|
22313
|
+
["BackgroundService.backgroundServiceEventReceived"]: [BackgroundService.backgroundServiceEventReceivedPayload];
|
|
22314
|
+
["BluetoothEmulation.gattOperationReceived"]: [BluetoothEmulation.gattOperationReceivedPayload];
|
|
22315
|
+
["BluetoothEmulation.characteristicOperationReceived"]: [BluetoothEmulation.characteristicOperationReceivedPayload];
|
|
22316
|
+
["BluetoothEmulation.descriptorOperationReceived"]: [BluetoothEmulation.descriptorOperationReceivedPayload];
|
|
22317
|
+
["Browser.downloadWillBegin"]: [Browser.downloadWillBeginPayload];
|
|
22318
|
+
["Browser.downloadProgress"]: [Browser.downloadProgressPayload];
|
|
22319
|
+
["CSS.fontsUpdated"]: [CSS.fontsUpdatedPayload];
|
|
22320
|
+
["CSS.mediaQueryResultChanged"]: [CSS.mediaQueryResultChangedPayload];
|
|
22321
|
+
["CSS.styleSheetAdded"]: [CSS.styleSheetAddedPayload];
|
|
22322
|
+
["CSS.styleSheetChanged"]: [CSS.styleSheetChangedPayload];
|
|
22323
|
+
["CSS.styleSheetRemoved"]: [CSS.styleSheetRemovedPayload];
|
|
22324
|
+
["CSS.computedStyleUpdated"]: [CSS.computedStyleUpdatedPayload];
|
|
22325
|
+
["Cast.sinksUpdated"]: [Cast.sinksUpdatedPayload];
|
|
22326
|
+
["Cast.issueUpdated"]: [Cast.issueUpdatedPayload];
|
|
22327
|
+
["DOM.attributeModified"]: [DOM.attributeModifiedPayload];
|
|
22328
|
+
["DOM.adoptedStyleSheetsModified"]: [DOM.adoptedStyleSheetsModifiedPayload];
|
|
22329
|
+
["DOM.attributeRemoved"]: [DOM.attributeRemovedPayload];
|
|
22330
|
+
["DOM.characterDataModified"]: [DOM.characterDataModifiedPayload];
|
|
22331
|
+
["DOM.childNodeCountUpdated"]: [DOM.childNodeCountUpdatedPayload];
|
|
22332
|
+
["DOM.childNodeInserted"]: [DOM.childNodeInsertedPayload];
|
|
22333
|
+
["DOM.childNodeRemoved"]: [DOM.childNodeRemovedPayload];
|
|
22334
|
+
["DOM.distributedNodesUpdated"]: [DOM.distributedNodesUpdatedPayload];
|
|
22335
|
+
["DOM.documentUpdated"]: [DOM.documentUpdatedPayload];
|
|
22336
|
+
["DOM.inlineStyleInvalidated"]: [DOM.inlineStyleInvalidatedPayload];
|
|
22337
|
+
["DOM.pseudoElementAdded"]: [DOM.pseudoElementAddedPayload];
|
|
22338
|
+
["DOM.topLayerElementsUpdated"]: [DOM.topLayerElementsUpdatedPayload];
|
|
22339
|
+
["DOM.scrollableFlagUpdated"]: [DOM.scrollableFlagUpdatedPayload];
|
|
22340
|
+
["DOM.affectedByStartingStylesFlagUpdated"]: [DOM.affectedByStartingStylesFlagUpdatedPayload];
|
|
22341
|
+
["DOM.pseudoElementRemoved"]: [DOM.pseudoElementRemovedPayload];
|
|
22342
|
+
["DOM.setChildNodes"]: [DOM.setChildNodesPayload];
|
|
22343
|
+
["DOM.shadowRootPopped"]: [DOM.shadowRootPoppedPayload];
|
|
22344
|
+
["DOM.shadowRootPushed"]: [DOM.shadowRootPushedPayload];
|
|
22345
|
+
["DOMStorage.domStorageItemAdded"]: [DOMStorage.domStorageItemAddedPayload];
|
|
22346
|
+
["DOMStorage.domStorageItemRemoved"]: [DOMStorage.domStorageItemRemovedPayload];
|
|
22347
|
+
["DOMStorage.domStorageItemUpdated"]: [DOMStorage.domStorageItemUpdatedPayload];
|
|
22348
|
+
["DOMStorage.domStorageItemsCleared"]: [DOMStorage.domStorageItemsClearedPayload];
|
|
22349
|
+
["DeviceAccess.deviceRequestPrompted"]: [DeviceAccess.deviceRequestPromptedPayload];
|
|
22350
|
+
["Emulation.virtualTimeBudgetExpired"]: [Emulation.virtualTimeBudgetExpiredPayload];
|
|
22351
|
+
["FedCm.dialogShown"]: [FedCm.dialogShownPayload];
|
|
22352
|
+
["FedCm.dialogClosed"]: [FedCm.dialogClosedPayload];
|
|
22353
|
+
["Fetch.requestPaused"]: [Fetch.requestPausedPayload];
|
|
22354
|
+
["Fetch.authRequired"]: [Fetch.authRequiredPayload];
|
|
22355
|
+
["Input.dragIntercepted"]: [Input.dragInterceptedPayload];
|
|
22356
|
+
["Inspector.detached"]: [Inspector.detachedPayload];
|
|
22357
|
+
["Inspector.targetCrashed"]: [Inspector.targetCrashedPayload];
|
|
22358
|
+
["Inspector.targetReloadedAfterCrash"]: [Inspector.targetReloadedAfterCrashPayload];
|
|
22359
|
+
["Inspector.workerScriptLoaded"]: [Inspector.workerScriptLoadedPayload];
|
|
22360
|
+
["LayerTree.layerPainted"]: [LayerTree.layerPaintedPayload];
|
|
22361
|
+
["LayerTree.layerTreeDidChange"]: [LayerTree.layerTreeDidChangePayload];
|
|
22362
|
+
["Log.entryAdded"]: [Log.entryAddedPayload];
|
|
22363
|
+
["Media.playerPropertiesChanged"]: [Media.playerPropertiesChangedPayload];
|
|
22364
|
+
["Media.playerEventsAdded"]: [Media.playerEventsAddedPayload];
|
|
22365
|
+
["Media.playerMessagesLogged"]: [Media.playerMessagesLoggedPayload];
|
|
22366
|
+
["Media.playerErrorsRaised"]: [Media.playerErrorsRaisedPayload];
|
|
22367
|
+
["Media.playerCreated"]: [Media.playerCreatedPayload];
|
|
22368
|
+
["Network.dataReceived"]: [Network.dataReceivedPayload];
|
|
22369
|
+
["Network.eventSourceMessageReceived"]: [Network.eventSourceMessageReceivedPayload];
|
|
22370
|
+
["Network.loadingFailed"]: [Network.loadingFailedPayload];
|
|
22371
|
+
["Network.loadingFinished"]: [Network.loadingFinishedPayload];
|
|
22372
|
+
["Network.requestIntercepted"]: [Network.requestInterceptedPayload];
|
|
22373
|
+
["Network.requestServedFromCache"]: [Network.requestServedFromCachePayload];
|
|
22374
|
+
["Network.requestWillBeSent"]: [Network.requestWillBeSentPayload];
|
|
22375
|
+
["Network.resourceChangedPriority"]: [Network.resourceChangedPriorityPayload];
|
|
22376
|
+
["Network.signedExchangeReceived"]: [Network.signedExchangeReceivedPayload];
|
|
22377
|
+
["Network.responseReceived"]: [Network.responseReceivedPayload];
|
|
22378
|
+
["Network.webSocketClosed"]: [Network.webSocketClosedPayload];
|
|
22379
|
+
["Network.webSocketCreated"]: [Network.webSocketCreatedPayload];
|
|
22380
|
+
["Network.webSocketFrameError"]: [Network.webSocketFrameErrorPayload];
|
|
22381
|
+
["Network.webSocketFrameReceived"]: [Network.webSocketFrameReceivedPayload];
|
|
22382
|
+
["Network.webSocketFrameSent"]: [Network.webSocketFrameSentPayload];
|
|
22383
|
+
["Network.webSocketHandshakeResponseReceived"]: [Network.webSocketHandshakeResponseReceivedPayload];
|
|
22384
|
+
["Network.webSocketWillSendHandshakeRequest"]: [Network.webSocketWillSendHandshakeRequestPayload];
|
|
22385
|
+
["Network.webTransportCreated"]: [Network.webTransportCreatedPayload];
|
|
22386
|
+
["Network.webTransportConnectionEstablished"]: [Network.webTransportConnectionEstablishedPayload];
|
|
22387
|
+
["Network.webTransportClosed"]: [Network.webTransportClosedPayload];
|
|
22388
|
+
["Network.directTCPSocketCreated"]: [Network.directTCPSocketCreatedPayload];
|
|
22389
|
+
["Network.directTCPSocketOpened"]: [Network.directTCPSocketOpenedPayload];
|
|
22390
|
+
["Network.directTCPSocketAborted"]: [Network.directTCPSocketAbortedPayload];
|
|
22391
|
+
["Network.directTCPSocketClosed"]: [Network.directTCPSocketClosedPayload];
|
|
22392
|
+
["Network.directTCPSocketChunkSent"]: [Network.directTCPSocketChunkSentPayload];
|
|
22393
|
+
["Network.directTCPSocketChunkReceived"]: [Network.directTCPSocketChunkReceivedPayload];
|
|
22394
|
+
["Network.directUDPSocketJoinedMulticastGroup"]: [Network.directUDPSocketJoinedMulticastGroupPayload];
|
|
22395
|
+
["Network.directUDPSocketLeftMulticastGroup"]: [Network.directUDPSocketLeftMulticastGroupPayload];
|
|
22396
|
+
["Network.directUDPSocketCreated"]: [Network.directUDPSocketCreatedPayload];
|
|
22397
|
+
["Network.directUDPSocketOpened"]: [Network.directUDPSocketOpenedPayload];
|
|
22398
|
+
["Network.directUDPSocketAborted"]: [Network.directUDPSocketAbortedPayload];
|
|
22399
|
+
["Network.directUDPSocketClosed"]: [Network.directUDPSocketClosedPayload];
|
|
22400
|
+
["Network.directUDPSocketChunkSent"]: [Network.directUDPSocketChunkSentPayload];
|
|
22401
|
+
["Network.directUDPSocketChunkReceived"]: [Network.directUDPSocketChunkReceivedPayload];
|
|
22402
|
+
["Network.requestWillBeSentExtraInfo"]: [Network.requestWillBeSentExtraInfoPayload];
|
|
22403
|
+
["Network.responseReceivedExtraInfo"]: [Network.responseReceivedExtraInfoPayload];
|
|
22404
|
+
["Network.responseReceivedEarlyHints"]: [Network.responseReceivedEarlyHintsPayload];
|
|
22405
|
+
["Network.trustTokenOperationDone"]: [Network.trustTokenOperationDonePayload];
|
|
22406
|
+
["Network.policyUpdated"]: [Network.policyUpdatedPayload];
|
|
22407
|
+
["Network.reportingApiReportAdded"]: [Network.reportingApiReportAddedPayload];
|
|
22408
|
+
["Network.reportingApiReportUpdated"]: [Network.reportingApiReportUpdatedPayload];
|
|
22409
|
+
["Network.reportingApiEndpointsChangedForOrigin"]: [Network.reportingApiEndpointsChangedForOriginPayload];
|
|
22410
|
+
["Network.deviceBoundSessionsAdded"]: [Network.deviceBoundSessionsAddedPayload];
|
|
22411
|
+
["Network.deviceBoundSessionEventOccurred"]: [Network.deviceBoundSessionEventOccurredPayload];
|
|
22412
|
+
["Overlay.inspectNodeRequested"]: [Overlay.inspectNodeRequestedPayload];
|
|
22413
|
+
["Overlay.nodeHighlightRequested"]: [Overlay.nodeHighlightRequestedPayload];
|
|
22414
|
+
["Overlay.screenshotRequested"]: [Overlay.screenshotRequestedPayload];
|
|
22415
|
+
["Overlay.inspectModeCanceled"]: [Overlay.inspectModeCanceledPayload];
|
|
22416
|
+
["Page.domContentEventFired"]: [Page.domContentEventFiredPayload];
|
|
22417
|
+
["Page.fileChooserOpened"]: [Page.fileChooserOpenedPayload];
|
|
22418
|
+
["Page.frameAttached"]: [Page.frameAttachedPayload];
|
|
22419
|
+
["Page.frameClearedScheduledNavigation"]: [Page.frameClearedScheduledNavigationPayload];
|
|
22420
|
+
["Page.frameDetached"]: [Page.frameDetachedPayload];
|
|
22421
|
+
["Page.frameSubtreeWillBeDetached"]: [Page.frameSubtreeWillBeDetachedPayload];
|
|
22422
|
+
["Page.frameNavigated"]: [Page.frameNavigatedPayload];
|
|
22423
|
+
["Page.documentOpened"]: [Page.documentOpenedPayload];
|
|
22424
|
+
["Page.frameResized"]: [Page.frameResizedPayload];
|
|
22425
|
+
["Page.frameStartedNavigating"]: [Page.frameStartedNavigatingPayload];
|
|
22426
|
+
["Page.frameRequestedNavigation"]: [Page.frameRequestedNavigationPayload];
|
|
22427
|
+
["Page.frameScheduledNavigation"]: [Page.frameScheduledNavigationPayload];
|
|
22428
|
+
["Page.frameStartedLoading"]: [Page.frameStartedLoadingPayload];
|
|
22429
|
+
["Page.frameStoppedLoading"]: [Page.frameStoppedLoadingPayload];
|
|
22430
|
+
["Page.downloadWillBegin"]: [Page.downloadWillBeginPayload];
|
|
22431
|
+
["Page.downloadProgress"]: [Page.downloadProgressPayload];
|
|
22432
|
+
["Page.interstitialHidden"]: [Page.interstitialHiddenPayload];
|
|
22433
|
+
["Page.interstitialShown"]: [Page.interstitialShownPayload];
|
|
22434
|
+
["Page.javascriptDialogClosed"]: [Page.javascriptDialogClosedPayload];
|
|
22435
|
+
["Page.javascriptDialogOpening"]: [Page.javascriptDialogOpeningPayload];
|
|
22436
|
+
["Page.lifecycleEvent"]: [Page.lifecycleEventPayload];
|
|
22437
|
+
["Page.backForwardCacheNotUsed"]: [Page.backForwardCacheNotUsedPayload];
|
|
22438
|
+
["Page.loadEventFired"]: [Page.loadEventFiredPayload];
|
|
22439
|
+
["Page.navigatedWithinDocument"]: [Page.navigatedWithinDocumentPayload];
|
|
22440
|
+
["Page.screencastFrame"]: [Page.screencastFramePayload];
|
|
22441
|
+
["Page.screencastVisibilityChanged"]: [Page.screencastVisibilityChangedPayload];
|
|
22442
|
+
["Page.windowOpen"]: [Page.windowOpenPayload];
|
|
22443
|
+
["Page.compilationCacheProduced"]: [Page.compilationCacheProducedPayload];
|
|
22444
|
+
["Performance.metrics"]: [Performance.metricsPayload];
|
|
22445
|
+
["PerformanceTimeline.timelineEventAdded"]: [PerformanceTimeline.timelineEventAddedPayload];
|
|
22446
|
+
["Preload.ruleSetUpdated"]: [Preload.ruleSetUpdatedPayload];
|
|
22447
|
+
["Preload.ruleSetRemoved"]: [Preload.ruleSetRemovedPayload];
|
|
22448
|
+
["Preload.preloadEnabledStateUpdated"]: [Preload.preloadEnabledStateUpdatedPayload];
|
|
22449
|
+
["Preload.prefetchStatusUpdated"]: [Preload.prefetchStatusUpdatedPayload];
|
|
22450
|
+
["Preload.prerenderStatusUpdated"]: [Preload.prerenderStatusUpdatedPayload];
|
|
22451
|
+
["Preload.preloadingAttemptSourcesUpdated"]: [Preload.preloadingAttemptSourcesUpdatedPayload];
|
|
22452
|
+
["Security.certificateError"]: [Security.certificateErrorPayload];
|
|
22453
|
+
["Security.visibleSecurityStateChanged"]: [Security.visibleSecurityStateChangedPayload];
|
|
22454
|
+
["Security.securityStateChanged"]: [Security.securityStateChangedPayload];
|
|
22455
|
+
["ServiceWorker.workerErrorReported"]: [ServiceWorker.workerErrorReportedPayload];
|
|
22456
|
+
["ServiceWorker.workerRegistrationUpdated"]: [ServiceWorker.workerRegistrationUpdatedPayload];
|
|
22457
|
+
["ServiceWorker.workerVersionUpdated"]: [ServiceWorker.workerVersionUpdatedPayload];
|
|
22458
|
+
["Storage.cacheStorageContentUpdated"]: [Storage.cacheStorageContentUpdatedPayload];
|
|
22459
|
+
["Storage.cacheStorageListUpdated"]: [Storage.cacheStorageListUpdatedPayload];
|
|
22460
|
+
["Storage.indexedDBContentUpdated"]: [Storage.indexedDBContentUpdatedPayload];
|
|
22461
|
+
["Storage.indexedDBListUpdated"]: [Storage.indexedDBListUpdatedPayload];
|
|
22462
|
+
["Storage.interestGroupAccessed"]: [Storage.interestGroupAccessedPayload];
|
|
22463
|
+
["Storage.interestGroupAuctionEventOccurred"]: [Storage.interestGroupAuctionEventOccurredPayload];
|
|
22464
|
+
["Storage.interestGroupAuctionNetworkRequestCreated"]: [Storage.interestGroupAuctionNetworkRequestCreatedPayload];
|
|
22465
|
+
["Storage.sharedStorageAccessed"]: [Storage.sharedStorageAccessedPayload];
|
|
22466
|
+
["Storage.sharedStorageWorkletOperationExecutionFinished"]: [Storage.sharedStorageWorkletOperationExecutionFinishedPayload];
|
|
22467
|
+
["Storage.storageBucketCreatedOrUpdated"]: [Storage.storageBucketCreatedOrUpdatedPayload];
|
|
22468
|
+
["Storage.storageBucketDeleted"]: [Storage.storageBucketDeletedPayload];
|
|
22469
|
+
["Storage.attributionReportingSourceRegistered"]: [Storage.attributionReportingSourceRegisteredPayload];
|
|
22470
|
+
["Storage.attributionReportingTriggerRegistered"]: [Storage.attributionReportingTriggerRegisteredPayload];
|
|
22471
|
+
["Storage.attributionReportingReportSent"]: [Storage.attributionReportingReportSentPayload];
|
|
22472
|
+
["Storage.attributionReportingVerboseDebugReportSent"]: [Storage.attributionReportingVerboseDebugReportSentPayload];
|
|
22473
|
+
["Target.attachedToTarget"]: [Target.attachedToTargetPayload];
|
|
22474
|
+
["Target.detachedFromTarget"]: [Target.detachedFromTargetPayload];
|
|
22475
|
+
["Target.receivedMessageFromTarget"]: [Target.receivedMessageFromTargetPayload];
|
|
22476
|
+
["Target.targetCreated"]: [Target.targetCreatedPayload];
|
|
22477
|
+
["Target.targetDestroyed"]: [Target.targetDestroyedPayload];
|
|
22478
|
+
["Target.targetCrashed"]: [Target.targetCrashedPayload];
|
|
22479
|
+
["Target.targetInfoChanged"]: [Target.targetInfoChangedPayload];
|
|
22480
|
+
["Tethering.accepted"]: [Tethering.acceptedPayload];
|
|
22481
|
+
["Tracing.bufferUsage"]: [Tracing.bufferUsagePayload];
|
|
22482
|
+
["Tracing.dataCollected"]: [Tracing.dataCollectedPayload];
|
|
22483
|
+
["Tracing.tracingComplete"]: [Tracing.tracingCompletePayload];
|
|
22484
|
+
["WebAudio.contextCreated"]: [WebAudio.contextCreatedPayload];
|
|
22485
|
+
["WebAudio.contextWillBeDestroyed"]: [WebAudio.contextWillBeDestroyedPayload];
|
|
22486
|
+
["WebAudio.contextChanged"]: [WebAudio.contextChangedPayload];
|
|
22487
|
+
["WebAudio.audioListenerCreated"]: [WebAudio.audioListenerCreatedPayload];
|
|
22488
|
+
["WebAudio.audioListenerWillBeDestroyed"]: [WebAudio.audioListenerWillBeDestroyedPayload];
|
|
22489
|
+
["WebAudio.audioNodeCreated"]: [WebAudio.audioNodeCreatedPayload];
|
|
22490
|
+
["WebAudio.audioNodeWillBeDestroyed"]: [WebAudio.audioNodeWillBeDestroyedPayload];
|
|
22491
|
+
["WebAudio.audioParamCreated"]: [WebAudio.audioParamCreatedPayload];
|
|
22492
|
+
["WebAudio.audioParamWillBeDestroyed"]: [WebAudio.audioParamWillBeDestroyedPayload];
|
|
22493
|
+
["WebAudio.nodesConnected"]: [WebAudio.nodesConnectedPayload];
|
|
22494
|
+
["WebAudio.nodesDisconnected"]: [WebAudio.nodesDisconnectedPayload];
|
|
22495
|
+
["WebAudio.nodeParamConnected"]: [WebAudio.nodeParamConnectedPayload];
|
|
22496
|
+
["WebAudio.nodeParamDisconnected"]: [WebAudio.nodeParamDisconnectedPayload];
|
|
22497
|
+
["WebAuthn.credentialAdded"]: [WebAuthn.credentialAddedPayload];
|
|
22498
|
+
["WebAuthn.credentialDeleted"]: [WebAuthn.credentialDeletedPayload];
|
|
22499
|
+
["WebAuthn.credentialUpdated"]: [WebAuthn.credentialUpdatedPayload];
|
|
22500
|
+
["WebAuthn.credentialAsserted"]: [WebAuthn.credentialAssertedPayload];
|
|
22501
|
+
["Console.messageAdded"]: [Console.messageAddedPayload];
|
|
22502
|
+
["Debugger.breakpointResolved"]: [Debugger.breakpointResolvedPayload];
|
|
22503
|
+
["Debugger.paused"]: [Debugger.pausedPayload];
|
|
22504
|
+
["Debugger.resumed"]: [Debugger.resumedPayload];
|
|
22505
|
+
["Debugger.scriptFailedToParse"]: [Debugger.scriptFailedToParsePayload];
|
|
22506
|
+
["Debugger.scriptParsed"]: [Debugger.scriptParsedPayload];
|
|
22507
|
+
["HeapProfiler.addHeapSnapshotChunk"]: [HeapProfiler.addHeapSnapshotChunkPayload];
|
|
22508
|
+
["HeapProfiler.heapStatsUpdate"]: [HeapProfiler.heapStatsUpdatePayload];
|
|
22509
|
+
["HeapProfiler.lastSeenObjectId"]: [HeapProfiler.lastSeenObjectIdPayload];
|
|
22510
|
+
["HeapProfiler.reportHeapSnapshotProgress"]: [HeapProfiler.reportHeapSnapshotProgressPayload];
|
|
22511
|
+
["HeapProfiler.resetProfiles"]: [HeapProfiler.resetProfilesPayload];
|
|
22512
|
+
["Profiler.consoleProfileFinished"]: [Profiler.consoleProfileFinishedPayload];
|
|
22513
|
+
["Profiler.consoleProfileStarted"]: [Profiler.consoleProfileStartedPayload];
|
|
22514
|
+
["Profiler.preciseCoverageDeltaUpdate"]: [Profiler.preciseCoverageDeltaUpdatePayload];
|
|
22515
|
+
["Runtime.bindingCalled"]: [Runtime.bindingCalledPayload];
|
|
22516
|
+
["Runtime.consoleAPICalled"]: [Runtime.consoleAPICalledPayload];
|
|
22517
|
+
["Runtime.exceptionRevoked"]: [Runtime.exceptionRevokedPayload];
|
|
22518
|
+
["Runtime.exceptionThrown"]: [Runtime.exceptionThrownPayload];
|
|
22519
|
+
["Runtime.executionContextCreated"]: [Runtime.executionContextCreatedPayload];
|
|
22520
|
+
["Runtime.executionContextDestroyed"]: [Runtime.executionContextDestroyedPayload];
|
|
22521
|
+
["Runtime.executionContextsCleared"]: [Runtime.executionContextsClearedPayload];
|
|
22522
|
+
["Runtime.inspectRequested"]: [Runtime.inspectRequestedPayload];
|
|
22523
|
+
}
|
|
21953
22524
|
export interface CommandParameters {
|
|
21954
22525
|
"Accessibility.disable": Accessibility.disableParameters;
|
|
21955
22526
|
"Accessibility.enable": Accessibility.enableParameters;
|
|
@@ -22273,8 +22844,6 @@ Error was thrown.
|
|
|
22273
22844
|
"Memory.getAllTimeSamplingProfile": Memory.getAllTimeSamplingProfileParameters;
|
|
22274
22845
|
"Memory.getBrowserSamplingProfile": Memory.getBrowserSamplingProfileParameters;
|
|
22275
22846
|
"Memory.getSamplingProfile": Memory.getSamplingProfileParameters;
|
|
22276
|
-
"Network.getIPProtectionProxyStatus": Network.getIPProtectionProxyStatusParameters;
|
|
22277
|
-
"Network.setIPProtectionProxyBypassEnabled": Network.setIPProtectionProxyBypassEnabledParameters;
|
|
22278
22847
|
"Network.setAcceptedEncodings": Network.setAcceptedEncodingsParameters;
|
|
22279
22848
|
"Network.clearAcceptedEncodingsOverride": Network.clearAcceptedEncodingsOverrideParameters;
|
|
22280
22849
|
"Network.canClearBrowserCache": Network.canClearBrowserCacheParameters;
|
|
@@ -22289,6 +22858,7 @@ Error was thrown.
|
|
|
22289
22858
|
"Network.emulateNetworkConditionsByRule": Network.emulateNetworkConditionsByRuleParameters;
|
|
22290
22859
|
"Network.overrideNetworkState": Network.overrideNetworkStateParameters;
|
|
22291
22860
|
"Network.enable": Network.enableParameters;
|
|
22861
|
+
"Network.configureDurableMessages": Network.configureDurableMessagesParameters;
|
|
22292
22862
|
"Network.getAllCookies": Network.getAllCookiesParameters;
|
|
22293
22863
|
"Network.getCertificate": Network.getCertificateParameters;
|
|
22294
22864
|
"Network.getCookies": Network.getCookiesParameters;
|
|
@@ -22310,6 +22880,8 @@ Error was thrown.
|
|
|
22310
22880
|
"Network.streamResourceContent": Network.streamResourceContentParameters;
|
|
22311
22881
|
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusParameters;
|
|
22312
22882
|
"Network.enableReportingApi": Network.enableReportingApiParameters;
|
|
22883
|
+
"Network.enableDeviceBoundSessions": Network.enableDeviceBoundSessionsParameters;
|
|
22884
|
+
"Network.fetchSchemefulSite": Network.fetchSchemefulSiteParameters;
|
|
22313
22885
|
"Network.loadNetworkResource": Network.loadNetworkResourceParameters;
|
|
22314
22886
|
"Network.setCookieControls": Network.setCookieControlsParameters;
|
|
22315
22887
|
"Overlay.disable": Overlay.disableParameters;
|
|
@@ -22408,6 +22980,7 @@ Error was thrown.
|
|
|
22408
22980
|
"Page.waitForDebugger": Page.waitForDebuggerParameters;
|
|
22409
22981
|
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters;
|
|
22410
22982
|
"Page.setPrerenderingAllowed": Page.setPrerenderingAllowedParameters;
|
|
22983
|
+
"Page.getAnnotatedPageContent": Page.getAnnotatedPageContentParameters;
|
|
22411
22984
|
"Performance.disable": Performance.disableParameters;
|
|
22412
22985
|
"Performance.enable": Performance.enableParameters;
|
|
22413
22986
|
"Performance.setTimeDomain": Performance.setTimeDomainParameters;
|
|
@@ -22490,11 +23063,13 @@ Error was thrown.
|
|
|
22490
23063
|
"Target.autoAttachRelated": Target.autoAttachRelatedParameters;
|
|
22491
23064
|
"Target.setDiscoverTargets": Target.setDiscoverTargetsParameters;
|
|
22492
23065
|
"Target.setRemoteLocations": Target.setRemoteLocationsParameters;
|
|
23066
|
+
"Target.getDevToolsTarget": Target.getDevToolsTargetParameters;
|
|
22493
23067
|
"Target.openDevTools": Target.openDevToolsParameters;
|
|
22494
23068
|
"Tethering.bind": Tethering.bindParameters;
|
|
22495
23069
|
"Tethering.unbind": Tethering.unbindParameters;
|
|
22496
23070
|
"Tracing.end": Tracing.endParameters;
|
|
22497
23071
|
"Tracing.getCategories": Tracing.getCategoriesParameters;
|
|
23072
|
+
"Tracing.getTrackEventDescriptor": Tracing.getTrackEventDescriptorParameters;
|
|
22498
23073
|
"Tracing.recordClockSyncMarker": Tracing.recordClockSyncMarkerParameters;
|
|
22499
23074
|
"Tracing.requestMemoryDump": Tracing.requestMemoryDumpParameters;
|
|
22500
23075
|
"Tracing.start": Tracing.startParameters;
|
|
@@ -22919,8 +23494,6 @@ Error was thrown.
|
|
|
22919
23494
|
"Memory.getAllTimeSamplingProfile": Memory.getAllTimeSamplingProfileReturnValue;
|
|
22920
23495
|
"Memory.getBrowserSamplingProfile": Memory.getBrowserSamplingProfileReturnValue;
|
|
22921
23496
|
"Memory.getSamplingProfile": Memory.getSamplingProfileReturnValue;
|
|
22922
|
-
"Network.getIPProtectionProxyStatus": Network.getIPProtectionProxyStatusReturnValue;
|
|
22923
|
-
"Network.setIPProtectionProxyBypassEnabled": Network.setIPProtectionProxyBypassEnabledReturnValue;
|
|
22924
23497
|
"Network.setAcceptedEncodings": Network.setAcceptedEncodingsReturnValue;
|
|
22925
23498
|
"Network.clearAcceptedEncodingsOverride": Network.clearAcceptedEncodingsOverrideReturnValue;
|
|
22926
23499
|
"Network.canClearBrowserCache": Network.canClearBrowserCacheReturnValue;
|
|
@@ -22935,6 +23508,7 @@ Error was thrown.
|
|
|
22935
23508
|
"Network.emulateNetworkConditionsByRule": Network.emulateNetworkConditionsByRuleReturnValue;
|
|
22936
23509
|
"Network.overrideNetworkState": Network.overrideNetworkStateReturnValue;
|
|
22937
23510
|
"Network.enable": Network.enableReturnValue;
|
|
23511
|
+
"Network.configureDurableMessages": Network.configureDurableMessagesReturnValue;
|
|
22938
23512
|
"Network.getAllCookies": Network.getAllCookiesReturnValue;
|
|
22939
23513
|
"Network.getCertificate": Network.getCertificateReturnValue;
|
|
22940
23514
|
"Network.getCookies": Network.getCookiesReturnValue;
|
|
@@ -22956,6 +23530,8 @@ Error was thrown.
|
|
|
22956
23530
|
"Network.streamResourceContent": Network.streamResourceContentReturnValue;
|
|
22957
23531
|
"Network.getSecurityIsolationStatus": Network.getSecurityIsolationStatusReturnValue;
|
|
22958
23532
|
"Network.enableReportingApi": Network.enableReportingApiReturnValue;
|
|
23533
|
+
"Network.enableDeviceBoundSessions": Network.enableDeviceBoundSessionsReturnValue;
|
|
23534
|
+
"Network.fetchSchemefulSite": Network.fetchSchemefulSiteReturnValue;
|
|
22959
23535
|
"Network.loadNetworkResource": Network.loadNetworkResourceReturnValue;
|
|
22960
23536
|
"Network.setCookieControls": Network.setCookieControlsReturnValue;
|
|
22961
23537
|
"Overlay.disable": Overlay.disableReturnValue;
|
|
@@ -23054,6 +23630,7 @@ Error was thrown.
|
|
|
23054
23630
|
"Page.waitForDebugger": Page.waitForDebuggerReturnValue;
|
|
23055
23631
|
"Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue;
|
|
23056
23632
|
"Page.setPrerenderingAllowed": Page.setPrerenderingAllowedReturnValue;
|
|
23633
|
+
"Page.getAnnotatedPageContent": Page.getAnnotatedPageContentReturnValue;
|
|
23057
23634
|
"Performance.disable": Performance.disableReturnValue;
|
|
23058
23635
|
"Performance.enable": Performance.enableReturnValue;
|
|
23059
23636
|
"Performance.setTimeDomain": Performance.setTimeDomainReturnValue;
|
|
@@ -23136,11 +23713,13 @@ Error was thrown.
|
|
|
23136
23713
|
"Target.autoAttachRelated": Target.autoAttachRelatedReturnValue;
|
|
23137
23714
|
"Target.setDiscoverTargets": Target.setDiscoverTargetsReturnValue;
|
|
23138
23715
|
"Target.setRemoteLocations": Target.setRemoteLocationsReturnValue;
|
|
23716
|
+
"Target.getDevToolsTarget": Target.getDevToolsTargetReturnValue;
|
|
23139
23717
|
"Target.openDevTools": Target.openDevToolsReturnValue;
|
|
23140
23718
|
"Tethering.bind": Tethering.bindReturnValue;
|
|
23141
23719
|
"Tethering.unbind": Tethering.unbindReturnValue;
|
|
23142
23720
|
"Tracing.end": Tracing.endReturnValue;
|
|
23143
23721
|
"Tracing.getCategories": Tracing.getCategoriesReturnValue;
|
|
23722
|
+
"Tracing.getTrackEventDescriptor": Tracing.getTrackEventDescriptorReturnValue;
|
|
23144
23723
|
"Tracing.recordClockSyncMarker": Tracing.recordClockSyncMarkerReturnValue;
|
|
23145
23724
|
"Tracing.requestMemoryDump": Tracing.requestMemoryDumpReturnValue;
|
|
23146
23725
|
"Tracing.start": Tracing.startReturnValue;
|