patchright-core 1.51.2 → 1.52.0
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/browsers.json +15 -13
- package/lib/androidServerImpl.js +42 -48
- package/lib/browserServerImpl.js +54 -67
- package/lib/cli/driver.js +71 -69
- package/lib/cli/program.js +312 -328
- package/lib/cli/programWithTestStub.js +51 -45
- package/lib/client/accessibility.js +31 -32
- package/lib/client/android.js +141 -228
- package/lib/client/api.js +135 -283
- package/lib/client/artifact.js +39 -36
- package/lib/client/browser.js +57 -61
- package/lib/client/browserContext.js +297 -326
- package/lib/client/browserType.js +92 -106
- package/lib/client/cdpSession.js +29 -31
- package/lib/client/channelOwner.js +82 -95
- package/lib/client/clientHelper.js +46 -38
- package/lib/client/clientInstrumentation.js +40 -37
- package/lib/client/clientStackTrace.js +41 -37
- package/lib/client/clock.js +36 -36
- package/lib/client/connection.js +190 -212
- package/lib/client/consoleMessage.js +31 -28
- package/lib/client/coverage.js +25 -22
- package/lib/client/dialog.js +30 -31
- package/lib/client/download.js +25 -25
- package/lib/client/electron.js +73 -75
- package/lib/client/elementHandle.js +111 -147
- package/lib/client/errors.js +53 -53
- package/lib/client/eventEmitter.js +124 -121
- package/lib/client/events.js +72 -68
- package/lib/client/fetch.js +135 -158
- package/lib/client/fileChooser.js +25 -24
- package/lib/client/fileUtils.js +31 -28
- package/lib/client/frame.js +187 -306
- package/lib/client/harRouter.js +42 -52
- package/lib/client/input.js +40 -69
- package/lib/client/jsHandle.js +54 -69
- package/lib/client/jsonPipe.js +27 -23
- package/lib/client/localUtils.js +29 -28
- package/lib/client/locator.js +161 -245
- package/lib/client/network.js +277 -295
- package/lib/client/page.js +270 -318
- package/lib/client/platform.js +46 -43
- package/lib/client/playwright.js +51 -66
- package/lib/client/selectors.js +48 -46
- package/lib/client/stream.js +29 -25
- package/lib/client/timeoutSettings.js +49 -39
- package/lib/client/tracing.js +48 -84
- package/lib/client/types.js +26 -22
- package/lib/client/video.js +35 -27
- package/lib/client/waiter.js +69 -88
- package/lib/client/webError.js +25 -23
- package/lib/client/webSocket.js +61 -56
- package/lib/client/worker.js +48 -58
- package/lib/client/writableStream.js +27 -23
- package/lib/generated/clockSource.js +26 -5
- package/lib/generated/consoleApiSource.js +26 -5
- package/lib/generated/injectedScriptSource.js +26 -5
- package/lib/generated/pollingRecorderSource.js +26 -5
- package/lib/generated/utilityScriptSource.js +26 -5
- package/lib/generated/webSocketMockSource.js +375 -4
- package/lib/inProcessFactory.js +53 -53
- package/lib/inprocess.js +2 -19
- package/lib/outofprocess.js +53 -46
- package/lib/protocol/debug.js +209 -25
- package/lib/protocol/serializers.js +153 -134
- package/lib/protocol/validator.js +2714 -2714
- package/lib/protocol/validatorPrimitives.js +114 -73
- package/lib/remote/playwrightConnection.js +140 -157
- package/lib/remote/playwrightServer.js +99 -84
- package/lib/server/accessibility.js +44 -37
- package/lib/server/android/android.js +216 -209
- package/lib/server/android/backendAdb.js +89 -82
- package/lib/server/artifact.js +78 -55
- package/lib/server/bidi/bidiBrowser.js +221 -155
- package/lib/server/bidi/bidiChromium.js +106 -79
- package/lib/server/bidi/bidiConnection.js +66 -83
- package/lib/server/bidi/bidiExecutionContext.js +128 -113
- package/lib/server/bidi/bidiFirefox.js +76 -69
- package/lib/server/bidi/bidiInput.js +86 -97
- package/lib/server/bidi/bidiNetworkManager.js +137 -154
- package/lib/server/bidi/bidiOverCdp.js +57 -58
- package/lib/server/bidi/bidiPage.js +247 -219
- package/lib/server/bidi/bidiPdf.js +52 -86
- package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
- package/lib/server/bidi/third_party/bidiDeserializer.js +55 -50
- package/lib/server/bidi/third_party/bidiKeyboard.js +236 -220
- package/lib/server/bidi/third_party/bidiProtocol.js +144 -131
- package/lib/server/bidi/third_party/bidiSerializer.js +67 -63
- package/lib/server/bidi/third_party/firefoxPrefs.js +141 -119
- package/lib/server/browser.js +76 -84
- package/lib/server/browserContext.js +321 -346
- package/lib/server/browserType.js +169 -182
- package/lib/server/callLog.js +47 -44
- package/lib/server/chromium/chromium.js +212 -190
- package/lib/server/chromium/chromiumSwitches.js +86 -64
- package/lib/server/chromium/crAccessibility.js +157 -131
- package/lib/server/chromium/crBrowser.js +253 -273
- package/lib/server/chromium/crConnection.js +91 -116
- package/lib/server/chromium/crCoverage.js +113 -127
- package/lib/server/chromium/crDevTools.js +59 -51
- package/lib/server/chromium/crDragDrop.js +62 -79
- package/lib/server/chromium/crExecutionContext.js +88 -83
- package/lib/server/chromium/crInput.js +97 -95
- package/lib/server/chromium/crNetworkManager.js +288 -403
- package/lib/server/chromium/crPage.js +522 -608
- package/lib/server/chromium/crPdf.js +54 -86
- package/lib/server/chromium/crProtocolHelper.js +92 -80
- package/lib/server/chromium/crServiceWorker.js +82 -67
- package/lib/server/chromium/defaultFontFamilies.js +152 -135
- package/lib/server/chromium/protocol.d.js +16 -0
- package/lib/server/chromium/videoRecorder.js +65 -99
- package/lib/server/clock.js +62 -50
- package/lib/server/codegen/csharp.js +185 -160
- package/lib/server/codegen/java.js +155 -128
- package/lib/server/codegen/javascript.js +163 -148
- package/lib/server/codegen/jsonl.js +32 -28
- package/lib/server/codegen/language.js +75 -52
- package/lib/server/codegen/languages.js +65 -27
- package/lib/server/codegen/python.js +140 -125
- package/lib/server/codegen/types.js +15 -4
- package/lib/server/console.js +28 -32
- package/lib/server/cookieStore.js +105 -86
- package/lib/server/debugController.js +97 -124
- package/lib/server/debugger.js +82 -78
- package/lib/server/deviceDescriptors.js +37 -24
- package/lib/server/deviceDescriptorsSource.json +50 -50
- package/lib/server/dialog.js +36 -35
- package/lib/server/dispatchers/androidDispatcher.js +196 -107
- package/lib/server/dispatchers/artifactDispatcher.js +62 -62
- package/lib/server/dispatchers/browserContextDispatcher.js +176 -205
- package/lib/server/dispatchers/browserDispatcher.js +78 -97
- package/lib/server/dispatchers/browserTypeDispatcher.js +35 -35
- package/lib/server/dispatchers/cdpSessionDispatcher.js +32 -36
- package/lib/server/dispatchers/debugControllerDispatcher.js +48 -66
- package/lib/server/dispatchers/dialogDispatcher.js +30 -27
- package/lib/server/dispatchers/dispatcher.js +169 -220
- package/lib/server/dispatchers/electronDispatcher.js +54 -57
- package/lib/server/dispatchers/elementHandlerDispatcher.js +77 -119
- package/lib/server/dispatchers/frameDispatcher.js +99 -163
- package/lib/server/dispatchers/jsHandleDispatcher.js +49 -66
- package/lib/server/dispatchers/jsonPipeDispatcher.js +35 -36
- package/lib/server/dispatchers/localUtilsDispatcher.js +95 -80
- package/lib/server/dispatchers/networkDispatchers.js +90 -107
- package/lib/server/dispatchers/pageDispatcher.js +128 -169
- package/lib/server/dispatchers/playwrightDispatcher.js +69 -76
- package/lib/server/dispatchers/selectorsDispatcher.js +28 -24
- package/lib/server/dispatchers/streamDispatcher.js +42 -45
- package/lib/server/dispatchers/tracingDispatcher.js +36 -41
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +96 -131
- package/lib/server/dispatchers/writableStreamDispatcher.js +54 -38
- package/lib/server/dom.js +413 -443
- package/lib/server/download.js +45 -35
- package/lib/server/electron/electron.js +156 -176
- package/lib/server/electron/loader.js +8 -36
- package/lib/server/errors.js +47 -46
- package/lib/server/fetch.js +289 -323
- package/lib/server/fileChooser.js +25 -24
- package/lib/server/fileUploadUtils.js +65 -59
- package/lib/server/firefox/ffAccessibility.js +153 -131
- package/lib/server/firefox/ffBrowser.js +213 -277
- package/lib/server/firefox/ffConnection.js +63 -84
- package/lib/server/firefox/ffExecutionContext.js +91 -73
- package/lib/server/firefox/ffInput.js +67 -69
- package/lib/server/firefox/ffNetworkManager.js +131 -110
- package/lib/server/firefox/ffPage.js +236 -273
- package/lib/server/firefox/firefox.js +76 -67
- package/lib/server/firefox/protocol.d.js +16 -0
- package/lib/server/formData.js +107 -35
- package/lib/server/frameSelectors.js +77 -111
- package/lib/server/frames.js +741 -891
- package/lib/server/har/harRecorder.js +85 -77
- package/lib/server/har/harTracer.js +287 -222
- package/lib/server/harBackend.js +80 -80
- package/lib/server/helper.js +56 -59
- package/lib/server/index.js +59 -99
- package/lib/server/input.js +134 -163
- package/lib/server/instrumentation.js +49 -44
- package/lib/server/javascript.js +143 -134
- package/lib/server/launchApp.js +92 -73
- package/lib/server/localUtils.js +130 -122
- package/lib/server/macEditingCommands.js +141 -137
- package/lib/server/network.js +262 -296
- package/lib/server/page.js +329 -426
- package/lib/server/pageBinding.js +88 -0
- package/lib/server/pipeTransport.js +49 -45
- package/lib/server/playwright.js +60 -67
- package/lib/server/progress.js +56 -51
- package/lib/server/protocolError.js +34 -31
- package/lib/server/recorder/chat.js +70 -86
- package/lib/server/recorder/contextRecorder.js +134 -138
- package/lib/server/recorder/recorderApp.js +127 -136
- package/lib/server/recorder/recorderCollection.js +56 -44
- package/lib/server/recorder/recorderFrontend.js +15 -4
- package/lib/server/recorder/recorderRunner.js +79 -103
- package/lib/server/recorder/recorderUtils.js +56 -45
- package/lib/server/recorder/throttledFile.js +42 -30
- package/lib/server/recorder.js +177 -186
- package/lib/server/registry/browserFetcher.js +106 -101
- package/lib/server/registry/dependencies.js +245 -196
- package/lib/server/registry/index.js +904 -792
- package/lib/server/registry/nativeDeps.js +1073 -464
- package/lib/server/registry/oopDownloadBrowserMain.js +57 -75
- package/lib/server/screenshotter.js +166 -182
- package/lib/server/selectors.js +85 -46
- package/lib/server/socksClientCertificatesInterceptor.js +166 -185
- package/lib/server/socksInterceptor.js +62 -70
- package/lib/server/storageScript.js +94 -100
- package/lib/server/timeoutSettings.js +58 -43
- package/lib/server/trace/recorder/snapshotter.js +70 -89
- package/lib/server/trace/recorder/snapshotterInjected.js +238 -217
- package/lib/server/trace/recorder/tracing.js +321 -333
- package/lib/server/trace/test/inMemorySnapshotter.js +46 -52
- package/lib/server/trace/viewer/traceViewer.js +168 -146
- package/lib/server/transport.js +124 -133
- package/lib/server/types.js +26 -22
- package/lib/server/usKeyboardLayout.js +135 -545
- package/lib/server/utils/ascii.js +39 -26
- package/lib/server/utils/comparators.js +105 -103
- package/lib/server/utils/crypto.js +157 -112
- package/lib/server/utils/debug.js +37 -28
- package/lib/server/utils/debugLogger.js +69 -48
- package/lib/server/utils/env.js +52 -37
- package/lib/server/utils/eventsHelper.js +29 -28
- package/lib/server/utils/expectUtils.js +31 -26
- package/lib/server/utils/fileUtils.js +123 -136
- package/lib/server/utils/happyEyeballs.js +138 -123
- package/lib/server/utils/hostPlatform.js +84 -120
- package/lib/server/utils/httpServer.js +106 -121
- package/lib/server/utils/image_tools/colorUtils.js +42 -51
- package/lib/server/utils/image_tools/compare.js +44 -43
- package/lib/server/utils/image_tools/imageChannel.js +38 -30
- package/lib/server/utils/image_tools/stats.js +40 -40
- package/lib/server/utils/linuxUtils.js +50 -37
- package/lib/server/utils/network.js +143 -86
- package/lib/server/utils/nodePlatform.js +87 -79
- package/lib/server/utils/pipeTransport.js +44 -42
- package/lib/server/utils/processLauncher.js +111 -121
- package/lib/server/utils/profiler.js +52 -39
- package/lib/server/utils/socksProxy.js +280 -339
- package/lib/server/utils/spawnAsync.js +37 -41
- package/lib/server/utils/task.js +31 -38
- package/lib/server/utils/userAgent.js +73 -66
- package/lib/server/utils/wsServer.js +73 -69
- package/lib/server/utils/zipFile.js +36 -37
- package/lib/server/utils/zones.js +37 -34
- package/lib/server/webkit/protocol.d.js +16 -0
- package/lib/server/webkit/webkit.js +76 -63
- package/lib/server/webkit/wkAccessibility.js +161 -118
- package/lib/server/webkit/wkBrowser.js +159 -176
- package/lib/server/webkit/wkConnection.js +59 -83
- package/lib/server/webkit/wkExecutionContext.js +84 -70
- package/lib/server/webkit/wkInput.js +82 -80
- package/lib/server/webkit/wkInterceptableRequest.js +102 -95
- package/lib/server/webkit/wkPage.js +525 -619
- package/lib/server/webkit/wkProvisionalPage.js +45 -56
- package/lib/server/webkit/wkWorkers.js +77 -77
- package/lib/utils/isomorphic/ariaSnapshot.js +144 -152
- package/lib/utils/isomorphic/assert.js +28 -22
- package/lib/utils/isomorphic/builtins.js +90 -0
- package/lib/utils/isomorphic/colors.js +66 -59
- package/lib/utils/isomorphic/cssParser.js +121 -125
- package/lib/utils/isomorphic/cssTokenizer.js +436 -364
- package/lib/utils/isomorphic/headers.js +38 -37
- package/lib/utils/isomorphic/locatorGenerators.js +340 -357
- package/lib/utils/isomorphic/locatorParser.js +96 -105
- package/lib/utils/isomorphic/locatorUtils.js +63 -44
- package/lib/utils/isomorphic/manualPromise.js +47 -39
- package/lib/utils/isomorphic/mimeType.js +448 -25
- package/lib/utils/isomorphic/multimap.js +35 -27
- package/lib/utils/isomorphic/rtti.js +35 -33
- package/lib/utils/isomorphic/selectorParser.js +183 -193
- package/lib/utils/isomorphic/semaphore.js +27 -24
- package/lib/utils/isomorphic/stackTrace.js +87 -98
- package/lib/utils/isomorphic/stringUtils.js +113 -106
- package/lib/utils/isomorphic/time.js +41 -22
- package/lib/utils/isomorphic/timeoutRunner.js +55 -54
- package/lib/utils/isomorphic/traceUtils.js +38 -41
- package/lib/utils/isomorphic/types.js +15 -4
- package/lib/utils/isomorphic/urlMatch.js +112 -67
- package/lib/utils/isomorphic/utilityScriptSerializers.js +248 -0
- package/lib/utils.js +97 -443
- package/lib/utilsBundle.js +101 -52
- package/lib/vite/htmlReport/index.html +21 -15
- package/lib/vite/recorder/assets/{codeMirrorModule-B9YMkrwa.js → codeMirrorModule-DVQi6prl.js} +1 -1
- package/lib/vite/recorder/assets/index-97EUAAbk.js +184 -0
- package/lib/vite/recorder/index.html +1 -1
- package/lib/vite/traceViewer/assets/{codeMirrorModule-DpJ-EmBQ.js → codeMirrorModule-dvXVzLxY.js} +1 -1
- package/lib/vite/traceViewer/assets/defaultSettingsView-BjymbO6M.js +265 -0
- package/lib/vite/traceViewer/{defaultSettingsView.5fN5lw10.css → defaultSettingsView.QdHITyLI.css} +1 -1
- package/lib/vite/traceViewer/index.ChIUCJnj.js +2 -0
- package/lib/vite/traceViewer/index.html +3 -3
- package/lib/vite/traceViewer/sw.bundle.js +3 -3
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/lib/vite/traceViewer/uiMode.jUCiCtdp.js +5 -0
- package/lib/zipBundle.js +32 -23
- package/package.json +1 -1
- package/types/protocol.d.ts +436 -17
- package/types/types.d.ts +35 -16
- package/lib/server/isomorphic/utilityScriptSerializers.js +0 -229
- package/lib/vite/recorder/assets/index-ELPgmkwA.js +0 -184
- package/lib/vite/traceViewer/assets/defaultSettingsView-DTenqiGw.js +0 -259
- package/lib/vite/traceViewer/index.CUq7VgrV.js +0 -2
- package/lib/vite/traceViewer/uiMode.CHJSAD7F.js +0 -5
package/types/protocol.d.ts
CHANGED
|
@@ -804,7 +804,7 @@ some CSP errors in the future.
|
|
|
804
804
|
*/
|
|
805
805
|
frame: AffectedFrame;
|
|
806
806
|
}
|
|
807
|
-
export type ContentSecurityPolicyViolationType = "kInlineViolation"|"kEvalViolation"|"kURLViolation"|"kTrustedTypesSinkViolation"|"kTrustedTypesPolicyViolation"|"kWasmEvalViolation";
|
|
807
|
+
export type ContentSecurityPolicyViolationType = "kInlineViolation"|"kEvalViolation"|"kURLViolation"|"kSRIViolation"|"kTrustedTypesSinkViolation"|"kTrustedTypesPolicyViolation"|"kWasmEvalViolation";
|
|
808
808
|
export interface SourceCodeLocation {
|
|
809
809
|
scriptId?: Runtime.ScriptId;
|
|
810
810
|
url: string;
|
|
@@ -860,6 +860,7 @@ CORS RFC1918 enforcement.
|
|
|
860
860
|
}
|
|
861
861
|
export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"UntrustworthyReportingOrigin"|"InsecureContext"|"InvalidHeader"|"InvalidRegisterTriggerHeader"|"SourceAndTriggerHeaders"|"SourceIgnored"|"TriggerIgnored"|"OsSourceIgnored"|"OsTriggerIgnored"|"InvalidRegisterOsSourceHeader"|"InvalidRegisterOsTriggerHeader"|"WebAndOsHeaders"|"NoWebOrOsSupport"|"NavigationRegistrationWithoutTransientUserActivation"|"InvalidInfoHeader"|"NoRegisterSourceHeader"|"NoRegisterTriggerHeader"|"NoRegisterOsSourceHeader"|"NoRegisterOsTriggerHeader"|"NavigationRegistrationUniqueScopeAlreadySet";
|
|
862
862
|
export type SharedDictionaryError = "UseErrorCrossOriginNoCorsRequest"|"UseErrorDictionaryLoadFailure"|"UseErrorMatchingDictionaryNotUsed"|"UseErrorUnexpectedContentDictionaryHeader"|"WriteErrorCossOriginNoCorsRequest"|"WriteErrorDisallowedBySettings"|"WriteErrorExpiredResponse"|"WriteErrorFeatureDisabled"|"WriteErrorInsufficientResources"|"WriteErrorInvalidMatchField"|"WriteErrorInvalidStructuredHeader"|"WriteErrorNavigationRequest"|"WriteErrorNoMatchField"|"WriteErrorNonListMatchDestField"|"WriteErrorNonSecureContext"|"WriteErrorNonStringIdField"|"WriteErrorNonStringInMatchDestList"|"WriteErrorNonStringMatchField"|"WriteErrorNonTokenTypeField"|"WriteErrorRequestAborted"|"WriteErrorShuttingDown"|"WriteErrorTooLongIdField"|"WriteErrorUnsupportedType";
|
|
863
|
+
export type SRIMessageSignatureError = "MissingSignatureHeader"|"MissingSignatureInputHeader"|"InvalidSignatureHeader"|"InvalidSignatureInputHeader"|"SignatureHeaderValueIsNotByteSequence"|"SignatureHeaderValueIsParameterized"|"SignatureHeaderValueIsIncorrectLength"|"SignatureInputHeaderMissingLabel"|"SignatureInputHeaderValueNotInnerList"|"SignatureInputHeaderValueMissingComponents"|"SignatureInputHeaderInvalidComponentType"|"SignatureInputHeaderInvalidComponentName"|"SignatureInputHeaderInvalidHeaderComponentParameter"|"SignatureInputHeaderInvalidDerivedComponentParameter"|"SignatureInputHeaderKeyIdLength"|"SignatureInputHeaderInvalidParameter"|"SignatureInputHeaderMissingRequiredParameters"|"ValidationFailedSignatureExpired"|"ValidationFailedInvalidLength"|"ValidationFailedSignatureMismatch"|"ValidationFailedIntegrityMismatch";
|
|
863
864
|
/**
|
|
864
865
|
* Details for issues around "Attribution Reporting API" usage.
|
|
865
866
|
Explainer: https://github.com/WICG/attribution-reporting-api
|
|
@@ -893,6 +894,12 @@ instead of "limited-quirks".
|
|
|
893
894
|
sharedDictionaryError: SharedDictionaryError;
|
|
894
895
|
request: AffectedRequest;
|
|
895
896
|
}
|
|
897
|
+
export interface SRIMessageSignatureIssueDetails {
|
|
898
|
+
error: SRIMessageSignatureError;
|
|
899
|
+
signatureBase: string;
|
|
900
|
+
integrityAssertions: string[];
|
|
901
|
+
request: AffectedRequest;
|
|
902
|
+
}
|
|
896
903
|
export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingId"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInput"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB";
|
|
897
904
|
/**
|
|
898
905
|
* Depending on the concrete errorType, different properties are set.
|
|
@@ -952,7 +959,7 @@ Should be updated alongside RequestIdTokenStatus in
|
|
|
952
959
|
third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
|
|
953
960
|
all cases except for success.
|
|
954
961
|
*/
|
|
955
|
-
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataInvalidContentType"|"IdpNotPotentiallyTrustworthy"|"DisabledInSettings"|"DisabledInFlags"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"AccountsListEmpty"|"AccountsInvalidContentType"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenIdpErrorResponse"|"IdTokenCrossSiteIdpErrorResponse"|"IdTokenInvalidRequest"|"IdTokenInvalidContentType"|"ErrorIdToken"|"Canceled"|"RpPageNotVisible"|"SilentMediationFailure"|"ThirdPartyCookiesBlocked"|"NotSignedInWithIdp"|"MissingTransientUserActivation"|"ReplacedByActiveMode"|"InvalidFieldsSpecified"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching"|"UiDismissedNoEmbargo";
|
|
962
|
+
export type FederatedAuthRequestIssueReason = "ShouldEmbargo"|"TooManyRequests"|"WellKnownHttpNotFound"|"WellKnownNoResponse"|"WellKnownInvalidResponse"|"WellKnownListEmpty"|"WellKnownInvalidContentType"|"ConfigNotInWellKnown"|"WellKnownTooBig"|"ConfigHttpNotFound"|"ConfigNoResponse"|"ConfigInvalidResponse"|"ConfigInvalidContentType"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataInvalidContentType"|"IdpNotPotentiallyTrustworthy"|"DisabledInSettings"|"DisabledInFlags"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"AccountsListEmpty"|"AccountsInvalidContentType"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenIdpErrorResponse"|"IdTokenCrossSiteIdpErrorResponse"|"IdTokenInvalidRequest"|"IdTokenInvalidContentType"|"ErrorIdToken"|"Canceled"|"RpPageNotVisible"|"SilentMediationFailure"|"ThirdPartyCookiesBlocked"|"NotSignedInWithIdp"|"MissingTransientUserActivation"|"ReplacedByActiveMode"|"InvalidFieldsSpecified"|"RelyingPartyOriginIsOpaque"|"TypeNotMatching"|"UiDismissedNoEmbargo"|"CorsError"|"SuppressedBySegmentationPlatform";
|
|
956
963
|
export interface FederatedAuthUserInfoRequestIssueDetails {
|
|
957
964
|
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
|
958
965
|
}
|
|
@@ -981,6 +988,17 @@ features, encourage the use of new ones, and provide general guidance.
|
|
|
981
988
|
failureMessage: string;
|
|
982
989
|
requestId?: Network.RequestId;
|
|
983
990
|
}
|
|
991
|
+
export type PartitioningBlobURLInfo = "BlockedCrossPartitionFetching"|"EnforceNoopenerForNavigation";
|
|
992
|
+
export interface PartitioningBlobURLIssueDetails {
|
|
993
|
+
/**
|
|
994
|
+
* The BlobURL that failed to load.
|
|
995
|
+
*/
|
|
996
|
+
url: string;
|
|
997
|
+
/**
|
|
998
|
+
* Additional information about the Partitioning Blob URL issue.
|
|
999
|
+
*/
|
|
1000
|
+
partitioningBlobURLInfo: PartitioningBlobURLInfo;
|
|
1001
|
+
}
|
|
984
1002
|
export type SelectElementAccessibilityIssueReason = "DisallowedSelectChild"|"DisallowedOptGroupChild"|"NonPhrasingContentOptionChild"|"InteractiveContentOptionChild"|"InteractiveContentLegendChild";
|
|
985
1003
|
/**
|
|
986
1004
|
* This issue warns about errors in the select element content model.
|
|
@@ -1032,7 +1050,7 @@ registrations being ignored.
|
|
|
1032
1050
|
optional fields in InspectorIssueDetails to convey more specific
|
|
1033
1051
|
information about the kind of issue.
|
|
1034
1052
|
*/
|
|
1035
|
-
export type InspectorIssueCode = "CookieIssue"|"MixedContentIssue"|"BlockedByResponseIssue"|"HeavyAdIssue"|"ContentSecurityPolicyIssue"|"SharedArrayBufferIssue"|"LowTextContrastIssue"|"CorsIssue"|"AttributionReportingIssue"|"QuirksModeIssue"|"NavigatorUserAgentIssue"|"GenericIssue"|"DeprecationIssue"|"ClientHintIssue"|"FederatedAuthRequestIssue"|"BounceTrackingIssue"|"CookieDeprecationMetadataIssue"|"StylesheetLoadingIssue"|"FederatedAuthUserInfoRequestIssue"|"PropertyRuleIssue"|"SharedDictionaryIssue"|"SelectElementAccessibilityIssue";
|
|
1053
|
+
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"|"SelectElementAccessibilityIssue"|"SRIMessageSignatureIssue";
|
|
1036
1054
|
/**
|
|
1037
1055
|
* This struct holds a list of optional fields with additional information
|
|
1038
1056
|
specific to the kind of issue. When adding a new issue code, please also
|
|
@@ -1049,6 +1067,7 @@ add a new optional field to this type.
|
|
|
1049
1067
|
corsIssueDetails?: CorsIssueDetails;
|
|
1050
1068
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
1051
1069
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
1070
|
+
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
|
|
1052
1071
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
|
1053
1072
|
genericIssueDetails?: GenericIssueDetails;
|
|
1054
1073
|
deprecationIssueDetails?: DeprecationIssueDetails;
|
|
@@ -1061,6 +1080,7 @@ add a new optional field to this type.
|
|
|
1061
1080
|
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
|
1062
1081
|
sharedDictionaryIssueDetails?: SharedDictionaryIssueDetails;
|
|
1063
1082
|
selectElementAccessibilityIssueDetails?: SelectElementAccessibilityIssueDetails;
|
|
1083
|
+
sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
|
|
1064
1084
|
}
|
|
1065
1085
|
/**
|
|
1066
1086
|
* A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
|
@@ -1575,7 +1595,7 @@ events afterwards if enabled and recording.
|
|
|
1575
1595
|
*/
|
|
1576
1596
|
windowState?: WindowState;
|
|
1577
1597
|
}
|
|
1578
|
-
export type PermissionType = "ar"|"audioCapture"|"automaticFullscreen"|"backgroundFetch"|"backgroundSync"|"cameraPanTiltZoom"|"capturedSurfaceControl"|"clipboardReadWrite"|"clipboardSanitizedWrite"|"displayCapture"|"durableStorage"|"geolocation"|"handTracking"|"idleDetection"|"keyboardLock"|"localFonts"|"midi"|"midiSysex"|"nfc"|"notifications"|"paymentHandler"|"periodicBackgroundSync"|"pointerLock"|"protectedMediaIdentifier"|"sensors"|"smartCard"|"speakerSelection"|"storageAccess"|"topLevelStorageAccess"|"videoCapture"|"vr"|"wakeLockScreen"|"wakeLockSystem"|"webAppInstallation"|"webPrinting"|"windowManagement";
|
|
1598
|
+
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";
|
|
1579
1599
|
export type PermissionSetting = "granted"|"denied"|"prompt";
|
|
1580
1600
|
/**
|
|
1581
1601
|
* Definition of PermissionDescriptor defined in the Permissions API:
|
|
@@ -1651,6 +1671,7 @@ Note that userVisibleOnly = true is the only currently supported type.
|
|
|
1651
1671
|
*/
|
|
1652
1672
|
buckets: Bucket[];
|
|
1653
1673
|
}
|
|
1674
|
+
export type PrivacySandboxAPI = "BiddingAndAuctionServices"|"TrustedKeyValue";
|
|
1654
1675
|
|
|
1655
1676
|
/**
|
|
1656
1677
|
* Fired when page is about to start a download.
|
|
@@ -1967,6 +1988,24 @@ without the site actually being enrolled. Only supported on page targets.
|
|
|
1967
1988
|
}
|
|
1968
1989
|
export type addPrivacySandboxEnrollmentOverrideReturnValue = {
|
|
1969
1990
|
}
|
|
1991
|
+
/**
|
|
1992
|
+
* Configures encryption keys used with a given privacy sandbox API to talk
|
|
1993
|
+
to a trusted coordinator. Since this is intended for test automation only,
|
|
1994
|
+
coordinatorOrigin must be a .test domain. No existing coordinator
|
|
1995
|
+
configuration for the origin may exist.
|
|
1996
|
+
*/
|
|
1997
|
+
export type addPrivacySandboxCoordinatorKeyConfigParameters = {
|
|
1998
|
+
api: PrivacySandboxAPI;
|
|
1999
|
+
coordinatorOrigin: string;
|
|
2000
|
+
keyConfig: string;
|
|
2001
|
+
/**
|
|
2002
|
+
* BrowserContext to perform the action in. When omitted, default browser
|
|
2003
|
+
context is used.
|
|
2004
|
+
*/
|
|
2005
|
+
browserContextId?: BrowserContextID;
|
|
2006
|
+
}
|
|
2007
|
+
export type addPrivacySandboxCoordinatorKeyConfigReturnValue = {
|
|
2008
|
+
}
|
|
1970
2009
|
}
|
|
1971
2010
|
|
|
1972
2011
|
/**
|
|
@@ -2790,6 +2829,83 @@ stylesheet rules) this rule came from.
|
|
|
2790
2829
|
*/
|
|
2791
2830
|
style: CSSStyle;
|
|
2792
2831
|
}
|
|
2832
|
+
/**
|
|
2833
|
+
* CSS function argument representation.
|
|
2834
|
+
*/
|
|
2835
|
+
export interface CSSFunctionParameter {
|
|
2836
|
+
/**
|
|
2837
|
+
* The parameter name.
|
|
2838
|
+
*/
|
|
2839
|
+
name: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* The parameter type.
|
|
2842
|
+
*/
|
|
2843
|
+
type: string;
|
|
2844
|
+
}
|
|
2845
|
+
/**
|
|
2846
|
+
* CSS function conditional block representation.
|
|
2847
|
+
*/
|
|
2848
|
+
export interface CSSFunctionConditionNode {
|
|
2849
|
+
/**
|
|
2850
|
+
* Media query for this conditional block. Only one type of condition should be set.
|
|
2851
|
+
*/
|
|
2852
|
+
media?: CSSMedia;
|
|
2853
|
+
/**
|
|
2854
|
+
* Container query for this conditional block. Only one type of condition should be set.
|
|
2855
|
+
*/
|
|
2856
|
+
containerQueries?: CSSContainerQuery;
|
|
2857
|
+
/**
|
|
2858
|
+
* @supports CSS at-rule condition. Only one type of condition should be set.
|
|
2859
|
+
*/
|
|
2860
|
+
supports?: CSSSupports;
|
|
2861
|
+
/**
|
|
2862
|
+
* Block body.
|
|
2863
|
+
*/
|
|
2864
|
+
children: CSSFunctionNode[];
|
|
2865
|
+
/**
|
|
2866
|
+
* The condition text.
|
|
2867
|
+
*/
|
|
2868
|
+
conditionText: string;
|
|
2869
|
+
}
|
|
2870
|
+
/**
|
|
2871
|
+
* Section of the body of a CSS function rule.
|
|
2872
|
+
*/
|
|
2873
|
+
export interface CSSFunctionNode {
|
|
2874
|
+
/**
|
|
2875
|
+
* A conditional block. If set, style should not be set.
|
|
2876
|
+
*/
|
|
2877
|
+
condition?: CSSFunctionConditionNode;
|
|
2878
|
+
/**
|
|
2879
|
+
* Values set by this node. If set, condition should not be set.
|
|
2880
|
+
*/
|
|
2881
|
+
style?: CSSStyle;
|
|
2882
|
+
}
|
|
2883
|
+
/**
|
|
2884
|
+
* CSS function at-rule representation.
|
|
2885
|
+
*/
|
|
2886
|
+
export interface CSSFunctionRule {
|
|
2887
|
+
/**
|
|
2888
|
+
* Name of the function.
|
|
2889
|
+
*/
|
|
2890
|
+
name: Value;
|
|
2891
|
+
/**
|
|
2892
|
+
* The css style sheet identifier (absent for user agent stylesheet and user-specified
|
|
2893
|
+
stylesheet rules) this rule came from.
|
|
2894
|
+
*/
|
|
2895
|
+
styleSheetId?: StyleSheetId;
|
|
2896
|
+
/**
|
|
2897
|
+
* Parent stylesheet's origin.
|
|
2898
|
+
*/
|
|
2899
|
+
origin: StyleSheetOrigin;
|
|
2900
|
+
/**
|
|
2901
|
+
* List of parameters.
|
|
2902
|
+
*/
|
|
2903
|
+
parameters: CSSFunctionParameter[];
|
|
2904
|
+
/**
|
|
2905
|
+
* Function body.
|
|
2906
|
+
*/
|
|
2907
|
+
children: CSSFunctionNode[];
|
|
2908
|
+
}
|
|
2793
2909
|
/**
|
|
2794
2910
|
* CSS keyframe rule representation.
|
|
2795
2911
|
*/
|
|
@@ -3162,6 +3278,10 @@ will not be set if there is no active position-try fallback.
|
|
|
3162
3278
|
* Id of the first parent element that does not have display: contents.
|
|
3163
3279
|
*/
|
|
3164
3280
|
parentLayoutNodeId?: DOM.NodeId;
|
|
3281
|
+
/**
|
|
3282
|
+
* A list of CSS at-function rules referenced by styles of this node.
|
|
3283
|
+
*/
|
|
3284
|
+
cssFunctionRules?: CSSFunctionRule[];
|
|
3165
3285
|
}
|
|
3166
3286
|
/**
|
|
3167
3287
|
* Returns all media queries parsed by the rendering engine.
|
|
@@ -4762,7 +4882,7 @@ appear on top of all other content.
|
|
|
4762
4882
|
/**
|
|
4763
4883
|
* Type of relation to get.
|
|
4764
4884
|
*/
|
|
4765
|
-
relation: "PopoverTarget";
|
|
4885
|
+
relation: "PopoverTarget"|"InterestTarget";
|
|
4766
4886
|
}
|
|
4767
4887
|
export type getElementByRelationReturnValue = {
|
|
4768
4888
|
/**
|
|
@@ -6029,6 +6149,40 @@ The final text color opacity is computed based on the opacity of all overlapping
|
|
|
6029
6149
|
* This domain emulates different environments for the page.
|
|
6030
6150
|
*/
|
|
6031
6151
|
export module Emulation {
|
|
6152
|
+
export interface SafeAreaInsets {
|
|
6153
|
+
/**
|
|
6154
|
+
* Overrides safe-area-inset-top.
|
|
6155
|
+
*/
|
|
6156
|
+
top?: number;
|
|
6157
|
+
/**
|
|
6158
|
+
* Overrides safe-area-max-inset-top.
|
|
6159
|
+
*/
|
|
6160
|
+
topMax?: number;
|
|
6161
|
+
/**
|
|
6162
|
+
* Overrides safe-area-inset-left.
|
|
6163
|
+
*/
|
|
6164
|
+
left?: number;
|
|
6165
|
+
/**
|
|
6166
|
+
* Overrides safe-area-max-inset-left.
|
|
6167
|
+
*/
|
|
6168
|
+
leftMax?: number;
|
|
6169
|
+
/**
|
|
6170
|
+
* Overrides safe-area-inset-bottom.
|
|
6171
|
+
*/
|
|
6172
|
+
bottom?: number;
|
|
6173
|
+
/**
|
|
6174
|
+
* Overrides safe-area-max-inset-bottom.
|
|
6175
|
+
*/
|
|
6176
|
+
bottomMax?: number;
|
|
6177
|
+
/**
|
|
6178
|
+
* Overrides safe-area-inset-right.
|
|
6179
|
+
*/
|
|
6180
|
+
right?: number;
|
|
6181
|
+
/**
|
|
6182
|
+
* Overrides safe-area-max-inset-right.
|
|
6183
|
+
*/
|
|
6184
|
+
rightMax?: number;
|
|
6185
|
+
}
|
|
6032
6186
|
/**
|
|
6033
6187
|
* Screen orientation.
|
|
6034
6188
|
*/
|
|
@@ -6228,6 +6382,15 @@ cleared.
|
|
|
6228
6382
|
}
|
|
6229
6383
|
export type setDefaultBackgroundColorOverrideReturnValue = {
|
|
6230
6384
|
}
|
|
6385
|
+
/**
|
|
6386
|
+
* Overrides the values for env(safe-area-inset-*) and env(safe-area-max-inset-*). Unset values will cause the
|
|
6387
|
+
respective variables to be undefined, even if previously overridden.
|
|
6388
|
+
*/
|
|
6389
|
+
export type setSafeAreaInsetsOverrideParameters = {
|
|
6390
|
+
insets: SafeAreaInsets;
|
|
6391
|
+
}
|
|
6392
|
+
export type setSafeAreaInsetsOverrideReturnValue = {
|
|
6393
|
+
}
|
|
6231
6394
|
/**
|
|
6232
6395
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
|
6233
6396
|
window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
|
@@ -6287,6 +6450,7 @@ change is not observed by the page, e.g. viewport-relative elements do not chang
|
|
|
6287
6450
|
/**
|
|
6288
6451
|
* If set, the display feature of a multi-segment screen. If not set, multi-segment support
|
|
6289
6452
|
is turned-off.
|
|
6453
|
+
Deprecated, use Emulation.setDisplayFeaturesOverride.
|
|
6290
6454
|
*/
|
|
6291
6455
|
displayFeature?: DisplayFeature;
|
|
6292
6456
|
/**
|
|
@@ -6317,6 +6481,25 @@ Does nothing if no override is set.
|
|
|
6317
6481
|
}
|
|
6318
6482
|
export type clearDevicePostureOverrideReturnValue = {
|
|
6319
6483
|
}
|
|
6484
|
+
/**
|
|
6485
|
+
* Start using the given display features to pupulate the Viewport Segments API.
|
|
6486
|
+
This override can also be set in setDeviceMetricsOverride().
|
|
6487
|
+
*/
|
|
6488
|
+
export type setDisplayFeaturesOverrideParameters = {
|
|
6489
|
+
features: DisplayFeature[];
|
|
6490
|
+
}
|
|
6491
|
+
export type setDisplayFeaturesOverrideReturnValue = {
|
|
6492
|
+
}
|
|
6493
|
+
/**
|
|
6494
|
+
* Clears the display features override set with either setDeviceMetricsOverride()
|
|
6495
|
+
or setDisplayFeaturesOverride() and starts using display features from the
|
|
6496
|
+
platform again.
|
|
6497
|
+
Does nothing if no override is set.
|
|
6498
|
+
*/
|
|
6499
|
+
export type clearDisplayFeaturesOverrideParameters = {
|
|
6500
|
+
}
|
|
6501
|
+
export type clearDisplayFeaturesOverrideReturnValue = {
|
|
6502
|
+
}
|
|
6320
6503
|
export type setScrollbarsHiddenParameters = {
|
|
6321
6504
|
/**
|
|
6322
6505
|
* Whether scrollbars should be always hidden.
|
|
@@ -8696,7 +8879,7 @@ applicable or not known.
|
|
|
8696
8879
|
/**
|
|
8697
8880
|
* The reason why request was blocked.
|
|
8698
8881
|
*/
|
|
8699
|
-
export type CorsError = "DisallowedByMode"|"InvalidResponse"|"WildcardOriginNotAllowed"|"MissingAllowOriginHeader"|"MultipleAllowOriginValues"|"InvalidAllowOriginValue"|"AllowOriginMismatch"|"InvalidAllowCredentials"|"CorsDisabledScheme"|"PreflightInvalidStatus"|"PreflightDisallowedRedirect"|"PreflightWildcardOriginNotAllowed"|"PreflightMissingAllowOriginHeader"|"PreflightMultipleAllowOriginValues"|"PreflightInvalidAllowOriginValue"|"PreflightAllowOriginMismatch"|"PreflightInvalidAllowCredentials"|"PreflightMissingAllowExternal"|"PreflightInvalidAllowExternal"|"PreflightMissingAllowPrivateNetwork"|"PreflightInvalidAllowPrivateNetwork"|"InvalidAllowMethodsPreflightResponse"|"InvalidAllowHeadersPreflightResponse"|"MethodDisallowedByPreflightResponse"|"HeaderDisallowedByPreflightResponse"|"RedirectContainsCredentials"|"InsecurePrivateNetwork"|"InvalidPrivateNetworkAccess"|"UnexpectedPrivateNetworkAccess"|"NoCorsRedirectModeNotFollow"|"PreflightMissingPrivateNetworkAccessId"|"PreflightMissingPrivateNetworkAccessName"|"PrivateNetworkAccessPermissionUnavailable"|"PrivateNetworkAccessPermissionDenied";
|
|
8882
|
+
export type CorsError = "DisallowedByMode"|"InvalidResponse"|"WildcardOriginNotAllowed"|"MissingAllowOriginHeader"|"MultipleAllowOriginValues"|"InvalidAllowOriginValue"|"AllowOriginMismatch"|"InvalidAllowCredentials"|"CorsDisabledScheme"|"PreflightInvalidStatus"|"PreflightDisallowedRedirect"|"PreflightWildcardOriginNotAllowed"|"PreflightMissingAllowOriginHeader"|"PreflightMultipleAllowOriginValues"|"PreflightInvalidAllowOriginValue"|"PreflightAllowOriginMismatch"|"PreflightInvalidAllowCredentials"|"PreflightMissingAllowExternal"|"PreflightInvalidAllowExternal"|"PreflightMissingAllowPrivateNetwork"|"PreflightInvalidAllowPrivateNetwork"|"InvalidAllowMethodsPreflightResponse"|"InvalidAllowHeadersPreflightResponse"|"MethodDisallowedByPreflightResponse"|"HeaderDisallowedByPreflightResponse"|"RedirectContainsCredentials"|"InsecurePrivateNetwork"|"InvalidPrivateNetworkAccess"|"UnexpectedPrivateNetworkAccess"|"NoCorsRedirectModeNotFollow"|"PreflightMissingPrivateNetworkAccessId"|"PreflightMissingPrivateNetworkAccessName"|"PrivateNetworkAccessPermissionUnavailable"|"PrivateNetworkAccessPermissionDenied"|"LocalNetworkAccessPermissionDenied";
|
|
8700
8883
|
export interface CorsErrorStatus {
|
|
8701
8884
|
corsError: CorsError;
|
|
8702
8885
|
failedParameter: string;
|
|
@@ -9067,7 +9250,7 @@ This is a temporary ability and it will be removed in the future.
|
|
|
9067
9250
|
/**
|
|
9068
9251
|
* Types of reasons why a cookie may not be sent with a request.
|
|
9069
9252
|
*/
|
|
9070
|
-
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize"|"PortMismatch"|"SchemeMismatch";
|
|
9253
|
+
export type CookieBlockedReason = "SecureOnly"|"NotOnPath"|"DomainMismatch"|"SameSiteStrict"|"SameSiteLax"|"SameSiteUnspecifiedTreatedAsLax"|"SameSiteNoneInsecure"|"UserPreferences"|"ThirdPartyPhaseout"|"ThirdPartyBlockedInFirstPartySet"|"UnknownError"|"SchemefulSameSiteStrict"|"SchemefulSameSiteLax"|"SchemefulSameSiteUnspecifiedTreatedAsLax"|"SamePartyFromCrossPartyContext"|"NameValuePairExceedsMaxSize"|"PortMismatch"|"SchemeMismatch"|"AnonymousContext";
|
|
9071
9254
|
/**
|
|
9072
9255
|
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
|
|
9073
9256
|
*/
|
|
@@ -9372,7 +9555,27 @@ https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-
|
|
|
9372
9555
|
* List of content encodings supported by the backend.
|
|
9373
9556
|
*/
|
|
9374
9557
|
export type ContentEncoding = "deflate"|"gzip"|"br"|"zstd";
|
|
9375
|
-
export type
|
|
9558
|
+
export type DirectSocketDnsQueryType = "ipv4"|"ipv6";
|
|
9559
|
+
export interface DirectTCPSocketOptions {
|
|
9560
|
+
/**
|
|
9561
|
+
* TCP_NODELAY option
|
|
9562
|
+
*/
|
|
9563
|
+
noDelay: boolean;
|
|
9564
|
+
/**
|
|
9565
|
+
* Expected to be unsigned integer.
|
|
9566
|
+
*/
|
|
9567
|
+
keepAliveDelay?: number;
|
|
9568
|
+
/**
|
|
9569
|
+
* Expected to be unsigned integer.
|
|
9570
|
+
*/
|
|
9571
|
+
sendBufferSize?: number;
|
|
9572
|
+
/**
|
|
9573
|
+
* Expected to be unsigned integer.
|
|
9574
|
+
*/
|
|
9575
|
+
receiveBufferSize?: number;
|
|
9576
|
+
dnsQueryType?: DirectSocketDnsQueryType;
|
|
9577
|
+
}
|
|
9578
|
+
export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PreflightBlock"|"PreflightWarn"|"PermissionBlock"|"PermissionWarn";
|
|
9376
9579
|
export type IPAddressSpace = "Local"|"Private"|"Public"|"Unknown";
|
|
9377
9580
|
export interface ConnectTiming {
|
|
9378
9581
|
/**
|
|
@@ -9942,6 +10145,52 @@ or were emitted for this request.
|
|
|
9942
10145
|
*/
|
|
9943
10146
|
timestamp: MonotonicTime;
|
|
9944
10147
|
}
|
|
10148
|
+
/**
|
|
10149
|
+
* Fired upon direct_socket.TCPSocket creation.
|
|
10150
|
+
*/
|
|
10151
|
+
export type directTCPSocketCreatedPayload = {
|
|
10152
|
+
identifier: RequestId;
|
|
10153
|
+
remoteAddr: string;
|
|
10154
|
+
/**
|
|
10155
|
+
* Unsigned int 16.
|
|
10156
|
+
*/
|
|
10157
|
+
remotePort: number;
|
|
10158
|
+
options: DirectTCPSocketOptions;
|
|
10159
|
+
timestamp: MonotonicTime;
|
|
10160
|
+
initiator?: Initiator;
|
|
10161
|
+
}
|
|
10162
|
+
/**
|
|
10163
|
+
* Fired when direct_socket.TCPSocket connection is opened.
|
|
10164
|
+
*/
|
|
10165
|
+
export type directTCPSocketOpenedPayload = {
|
|
10166
|
+
identifier: RequestId;
|
|
10167
|
+
remoteAddr: string;
|
|
10168
|
+
/**
|
|
10169
|
+
* Expected to be unsigned integer.
|
|
10170
|
+
*/
|
|
10171
|
+
remotePort: number;
|
|
10172
|
+
timestamp: MonotonicTime;
|
|
10173
|
+
localAddr?: string;
|
|
10174
|
+
/**
|
|
10175
|
+
* Expected to be unsigned integer.
|
|
10176
|
+
*/
|
|
10177
|
+
localPort?: number;
|
|
10178
|
+
}
|
|
10179
|
+
/**
|
|
10180
|
+
* Fired when direct_socket.TCPSocket is aborted.
|
|
10181
|
+
*/
|
|
10182
|
+
export type directTCPSocketAbortedPayload = {
|
|
10183
|
+
identifier: RequestId;
|
|
10184
|
+
errorMessage: string;
|
|
10185
|
+
timestamp: MonotonicTime;
|
|
10186
|
+
}
|
|
10187
|
+
/**
|
|
10188
|
+
* Fired when direct_socket.TCPSocket is closed.
|
|
10189
|
+
*/
|
|
10190
|
+
export type directTCPSocketClosedPayload = {
|
|
10191
|
+
identifier: RequestId;
|
|
10192
|
+
timestamp: MonotonicTime;
|
|
10193
|
+
}
|
|
9945
10194
|
/**
|
|
9946
10195
|
* Fired when additional information about a requestWillBeSent event is available from the
|
|
9947
10196
|
network stack. Not every requestWillBeSent event will have an additional
|
|
@@ -11645,9 +11894,9 @@ as an ad.
|
|
|
11645
11894
|
export type GatedAPIFeatures = "SharedArrayBuffers"|"SharedArrayBuffersTransferAllowed"|"PerformanceMeasureMemory"|"PerformanceProfile";
|
|
11646
11895
|
/**
|
|
11647
11896
|
* All Permissions Policy features. This enum should match the one defined
|
|
11648
|
-
in
|
|
11897
|
+
in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
|
|
11649
11898
|
*/
|
|
11650
|
-
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"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"|"digital-credentials-get"|"direct-sockets"|"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"|"local-fonts"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"popins"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"sync-xhr"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
|
11899
|
+
export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"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"|"digital-credentials-get"|"direct-sockets"|"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"|"local-fonts"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"popins"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"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";
|
|
11651
11900
|
/**
|
|
11652
11901
|
* Reason for a permissions policy feature to be disabled.
|
|
11653
11902
|
*/
|
|
@@ -11693,6 +11942,17 @@ parsable.
|
|
|
11693
11942
|
status: OriginTrialStatus;
|
|
11694
11943
|
tokensWithStatus: OriginTrialTokenWithStatus[];
|
|
11695
11944
|
}
|
|
11945
|
+
/**
|
|
11946
|
+
* Additional information about the frame document's security origin.
|
|
11947
|
+
*/
|
|
11948
|
+
export interface SecurityOriginDetails {
|
|
11949
|
+
/**
|
|
11950
|
+
* Indicates whether the frame document's security origin is one
|
|
11951
|
+
of the local hostnames (e.g. "localhost") or IP addresses (IPv4
|
|
11952
|
+
127.0.0.0/8 or IPv6 ::1).
|
|
11953
|
+
*/
|
|
11954
|
+
isLocalhost: boolean;
|
|
11955
|
+
}
|
|
11696
11956
|
/**
|
|
11697
11957
|
* Information about the Frame on the page.
|
|
11698
11958
|
*/
|
|
@@ -11732,6 +11992,10 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|
|
11732
11992
|
* Frame document's security origin.
|
|
11733
11993
|
*/
|
|
11734
11994
|
securityOrigin: string;
|
|
11995
|
+
/**
|
|
11996
|
+
* Additional details about the frame document's security origin.
|
|
11997
|
+
*/
|
|
11998
|
+
securityOriginDetails?: SecurityOriginDetails;
|
|
11735
11999
|
/**
|
|
11736
12000
|
* Frame document's mimeType as determined by the browser.
|
|
11737
12001
|
*/
|
|
@@ -12235,7 +12499,7 @@ https://github.com/WICG/manifest-incubations/blob/gh-pages/scope_extensions-expl
|
|
|
12235
12499
|
/**
|
|
12236
12500
|
* List of not restored reasons for back-forward cache.
|
|
12237
12501
|
*/
|
|
12238
|
-
export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCSticky"|"WebTransportSticky"|"WebSocketSticky"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient";
|
|
12502
|
+
export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"SchedulerTrackedFeatureUsed"|"ConflictingBrowsingInstance"|"CacheFlushed"|"ServiceWorkerVersionActivation"|"SessionRestored"|"ServiceWorkerPostMessage"|"EnteredBackForwardCacheBeforeServiceWorkerHostAdded"|"RenderFrameHostReused_SameSite"|"RenderFrameHostReused_CrossSite"|"ServiceWorkerClaim"|"IgnoreEventAndEvict"|"HaveInnerContents"|"TimeoutPuttingInCache"|"BackForwardCacheDisabledByLowMemory"|"BackForwardCacheDisabledByCommandLine"|"NetworkRequestDatapipeDrainedAsBytesConsumer"|"NetworkRequestRedirected"|"NetworkRequestTimeout"|"NetworkExceedsBufferLimit"|"NavigationCancelledWhileRestoring"|"NotMostRecentNavigationEntry"|"BackForwardCacheDisabledForPrerender"|"UserAgentOverrideDiffers"|"ForegroundCacheLimit"|"BrowsingInstanceNotSwapped"|"BackForwardCacheDisabledForDelegate"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"CookieDisabled"|"HTTPAuthRequired"|"CookieFlushed"|"BroadcastChannelOnMessage"|"WebViewSettingsChanged"|"WebViewJavaScriptObjectChanged"|"WebViewMessageListenerInjected"|"WebViewSafeBrowsingAllowlistChanged"|"WebViewDocumentStartJavascriptChanged"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"OutstandingNetworkRequestOthers"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"KeepaliveRequest"|"IndexedDBEvent"|"Dummy"|"JsNetworkRequestReceivedCacheControlNoStoreResource"|"WebRTCSticky"|"WebTransportSticky"|"WebSocketSticky"|"SmartCard"|"LiveMediaStreamTrack"|"UnloadHandler"|"ParserAborted"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSessionService"|"ContentScreenReader"|"ContentDiscarded"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"|"RequestedByWebViewClient"|"PostMessageByWebViewClient"|"CacheControlNoStoreDeviceBoundSessionTerminated"|"CacheLimitPruned";
|
|
12239
12503
|
/**
|
|
12240
12504
|
* Types of not restored reasons for back-forward cache.
|
|
12241
12505
|
*/
|
|
@@ -12848,6 +13112,11 @@ option, use with caution.
|
|
|
12848
13112
|
* Enables page domain notifications.
|
|
12849
13113
|
*/
|
|
12850
13114
|
export type enableParameters = {
|
|
13115
|
+
/**
|
|
13116
|
+
* If true, the `Page.fileChooserOpened` event will be emitted regardless of the state set by
|
|
13117
|
+
`Page.setInterceptFileChooserDialog` command (default: false).
|
|
13118
|
+
*/
|
|
13119
|
+
enableFileChooserOpenedEvent?: boolean;
|
|
12851
13120
|
}
|
|
12852
13121
|
export type enableReturnValue = {
|
|
12853
13122
|
}
|
|
@@ -13628,6 +13897,12 @@ Instead, a protocol event `Page.fileChooserOpened` is emitted.
|
|
|
13628
13897
|
*/
|
|
13629
13898
|
export type setInterceptFileChooserDialogParameters = {
|
|
13630
13899
|
enabled: boolean;
|
|
13900
|
+
/**
|
|
13901
|
+
* If true, cancels the dialog by emitting relevant events (if any)
|
|
13902
|
+
in addition to not showing it if the interception is enabled
|
|
13903
|
+
(default: false).
|
|
13904
|
+
*/
|
|
13905
|
+
cancel?: boolean;
|
|
13631
13906
|
}
|
|
13632
13907
|
export type setInterceptFileChooserDialogReturnValue = {
|
|
13633
13908
|
}
|
|
@@ -14292,9 +14567,13 @@ Tokens from that issuer.
|
|
|
14292
14567
|
*/
|
|
14293
14568
|
export type InterestGroupAuctionFetchType = "bidderJs"|"bidderWasm"|"sellerJs"|"bidderTrustedSignals"|"sellerTrustedSignals";
|
|
14294
14569
|
/**
|
|
14295
|
-
* Enum of shared storage access
|
|
14570
|
+
* Enum of shared storage access scopes.
|
|
14571
|
+
*/
|
|
14572
|
+
export type SharedStorageAccessScope = "window"|"sharedStorageWorklet"|"protectedAudienceWorklet"|"header";
|
|
14573
|
+
/**
|
|
14574
|
+
* Enum of shared storage access methods.
|
|
14296
14575
|
*/
|
|
14297
|
-
export type
|
|
14576
|
+
export type SharedStorageAccessMethod = "addModule"|"createWorklet"|"selectURL"|"run"|"batchUpdate"|"set"|"append"|"delete"|"clear"|"get"|"keys"|"values"|"entries"|"length"|"remainingBudget";
|
|
14298
14577
|
/**
|
|
14299
14578
|
* Struct for a single key-value pair in an origin's shared storage.
|
|
14300
14579
|
*/
|
|
@@ -14729,18 +15008,26 @@ The following parameters are included in all events.
|
|
|
14729
15008
|
* Time of the access.
|
|
14730
15009
|
*/
|
|
14731
15010
|
accessTime: Network.TimeSinceEpoch;
|
|
15011
|
+
/**
|
|
15012
|
+
* Enum value indicating the access scope.
|
|
15013
|
+
*/
|
|
15014
|
+
scope: SharedStorageAccessScope;
|
|
14732
15015
|
/**
|
|
14733
15016
|
* Enum value indicating the Shared Storage API method invoked.
|
|
14734
15017
|
*/
|
|
14735
|
-
|
|
15018
|
+
method: SharedStorageAccessMethod;
|
|
14736
15019
|
/**
|
|
14737
15020
|
* DevTools Frame Token for the primary frame tree's root.
|
|
14738
15021
|
*/
|
|
14739
15022
|
mainFrameId: Page.FrameId;
|
|
14740
15023
|
/**
|
|
14741
|
-
*
|
|
15024
|
+
* Serialization of the origin owning the Shared Storage data.
|
|
14742
15025
|
*/
|
|
14743
15026
|
ownerOrigin: string;
|
|
15027
|
+
/**
|
|
15028
|
+
* Serialization of the site owning the Shared Storage data.
|
|
15029
|
+
*/
|
|
15030
|
+
ownerSite: string;
|
|
14744
15031
|
/**
|
|
14745
15032
|
* The sub-parameters wrapped by `params` are all optional and their
|
|
14746
15033
|
presence/absence depends on `type`.
|
|
@@ -15623,6 +15910,10 @@ The object has the following API:
|
|
|
15623
15910
|
* Binding name, 'cdp' if not specified.
|
|
15624
15911
|
*/
|
|
15625
15912
|
bindingName?: string;
|
|
15913
|
+
/**
|
|
15914
|
+
* If true, inherits the current root session's permissions (default: false).
|
|
15915
|
+
*/
|
|
15916
|
+
inheritPermissions?: boolean;
|
|
15626
15917
|
}
|
|
15627
15918
|
export type exposeDevToolsProtocolReturnValue = {
|
|
15628
15919
|
}
|
|
@@ -17332,7 +17623,7 @@ CDP events for them are emitted separately but they share
|
|
|
17332
17623
|
/**
|
|
17333
17624
|
* List of FinalStatus reasons for Prerender2.
|
|
17334
17625
|
*/
|
|
17335
|
-
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch";
|
|
17626
|
+
export type PrerenderFinalStatus = "Activated"|"Destroyed"|"LowEndDevice"|"InvalidSchemeRedirect"|"InvalidSchemeNavigation"|"NavigationRequestBlockedByCsp"|"MainFrameNavigation"|"MojoBinderPolicy"|"RendererProcessCrashed"|"RendererProcessKilled"|"Download"|"TriggerDestroyed"|"NavigationNotCommitted"|"NavigationBadHttpStatus"|"ClientCertRequested"|"NavigationRequestNetworkError"|"CancelAllHostsForTesting"|"DidFailLoad"|"Stop"|"SslCertificateError"|"LoginAuthRequested"|"UaChangeRequiresReload"|"BlockedByClient"|"AudioOutputDeviceRequested"|"MixedContent"|"TriggerBackgrounded"|"MemoryLimitExceeded"|"DataSaverEnabled"|"TriggerUrlHasEffectiveUrl"|"ActivatedBeforeStarted"|"InactivePageRestriction"|"StartFailed"|"TimeoutBackgrounded"|"CrossSiteRedirectInInitialNavigation"|"CrossSiteNavigationInInitialNavigation"|"SameSiteCrossOriginRedirectNotOptInInInitialNavigation"|"SameSiteCrossOriginNavigationNotOptInInInitialNavigation"|"ActivationNavigationParameterMismatch"|"ActivatedInBackground"|"EmbedderHostDisallowed"|"ActivationNavigationDestroyedBeforeSuccess"|"TabClosedByUserGesture"|"TabClosedWithoutUserGesture"|"PrimaryMainFrameRendererProcessCrashed"|"PrimaryMainFrameRendererProcessKilled"|"ActivationFramePolicyNotCompatible"|"PreloadingDisabled"|"BatterySaverEnabled"|"ActivatedDuringMainFrameNavigation"|"PreloadingUnsupportedByWebContents"|"CrossSiteRedirectInMainFrameNavigation"|"CrossSiteNavigationInMainFrameNavigation"|"SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation"|"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation"|"MemoryPressureOnTrigger"|"MemoryPressureAfterTriggered"|"PrerenderingDisabledByDevTools"|"SpeculationRuleRemoved"|"ActivatedWithAuxiliaryBrowsingContexts"|"MaxNumOfRunningEagerPrerendersExceeded"|"MaxNumOfRunningNonEagerPrerendersExceeded"|"MaxNumOfRunningEmbedderPrerendersExceeded"|"PrerenderingUrlHasEffectiveUrl"|"RedirectedPrerenderingUrlHasEffectiveUrl"|"ActivationUrlHasEffectiveUrl"|"JavaScriptInterfaceAdded"|"JavaScriptInterfaceRemoved"|"AllPrerenderingCanceled"|"WindowClosed"|"SlowNetwork"|"OtherPrerenderedPageActivated"|"V8OptimizerDisabled"|"PrerenderFailedDuringPrefetch"|"BrowsingDataRemoved";
|
|
17336
17627
|
/**
|
|
17337
17628
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
|
17338
17629
|
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
|
@@ -17342,7 +17633,7 @@ status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
|
|
17342
17633
|
* TODO(https://crbug.com/1384419): revisit the list of PrefetchStatus and
|
|
17343
17634
|
filter out the ones that aren't necessary to the developers.
|
|
17344
17635
|
*/
|
|
17345
|
-
export type PrefetchStatus = "PrefetchAllowed"|"PrefetchFailedIneligibleRedirect"|"PrefetchFailedInvalidRedirect"|"PrefetchFailedMIMENotSupported"|"PrefetchFailedNetError"|"PrefetchFailedNon2XX"|"PrefetchEvictedAfterCandidateRemoved"|"PrefetchEvictedForNewerPrefetch"|"PrefetchHeldback"|"PrefetchIneligibleRetryAfter"|"PrefetchIsPrivacyDecoy"|"PrefetchIsStale"|"PrefetchNotEligibleBrowserContextOffTheRecord"|"PrefetchNotEligibleDataSaverEnabled"|"PrefetchNotEligibleExistingProxy"|"PrefetchNotEligibleHostIsNonUnique"|"PrefetchNotEligibleNonDefaultStoragePartition"|"PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy"|"PrefetchNotEligibleSchemeIsNotHttps"|"PrefetchNotEligibleUserHasCookies"|"PrefetchNotEligibleUserHasServiceWorker"|"PrefetchNotEligibleBatterySaverEnabled"|"PrefetchNotEligiblePreloadingDisabled"|"PrefetchNotFinishedInTime"|"PrefetchNotStarted"|"PrefetchNotUsedCookiesChanged"|"PrefetchProxyNotAvailable"|"PrefetchResponseUsed"|"PrefetchSuccessfulButNotUsed"|"PrefetchNotUsedProbeFailed";
|
|
17636
|
+
export type PrefetchStatus = "PrefetchAllowed"|"PrefetchFailedIneligibleRedirect"|"PrefetchFailedInvalidRedirect"|"PrefetchFailedMIMENotSupported"|"PrefetchFailedNetError"|"PrefetchFailedNon2XX"|"PrefetchEvictedAfterBrowsingDataRemoved"|"PrefetchEvictedAfterCandidateRemoved"|"PrefetchEvictedForNewerPrefetch"|"PrefetchHeldback"|"PrefetchIneligibleRetryAfter"|"PrefetchIsPrivacyDecoy"|"PrefetchIsStale"|"PrefetchNotEligibleBrowserContextOffTheRecord"|"PrefetchNotEligibleDataSaverEnabled"|"PrefetchNotEligibleExistingProxy"|"PrefetchNotEligibleHostIsNonUnique"|"PrefetchNotEligibleNonDefaultStoragePartition"|"PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy"|"PrefetchNotEligibleSchemeIsNotHttps"|"PrefetchNotEligibleUserHasCookies"|"PrefetchNotEligibleUserHasServiceWorker"|"PrefetchNotEligibleUserHasServiceWorkerNoFetchHandler"|"PrefetchNotEligibleRedirectFromServiceWorker"|"PrefetchNotEligibleRedirectToServiceWorker"|"PrefetchNotEligibleBatterySaverEnabled"|"PrefetchNotEligiblePreloadingDisabled"|"PrefetchNotFinishedInTime"|"PrefetchNotStarted"|"PrefetchNotUsedCookiesChanged"|"PrefetchProxyNotAvailable"|"PrefetchResponseUsed"|"PrefetchSuccessfulButNotUsed"|"PrefetchNotUsedProbeFailed";
|
|
17346
17637
|
/**
|
|
17347
17638
|
* Information of headers to be displayed when the header mismatch occurred.
|
|
17348
17639
|
*/
|
|
@@ -17691,6 +17982,10 @@ the web-bluetooth API.
|
|
|
17691
17982
|
* Indicates the various states of Central.
|
|
17692
17983
|
*/
|
|
17693
17984
|
export type CentralState = "absent"|"powered-off"|"powered-on";
|
|
17985
|
+
/**
|
|
17986
|
+
* Indicates the various types of GATT event.
|
|
17987
|
+
*/
|
|
17988
|
+
export type GATTOperationType = "connection"|"discovery";
|
|
17694
17989
|
/**
|
|
17695
17990
|
* Stores the manufacturer data
|
|
17696
17991
|
*/
|
|
@@ -17734,7 +18029,29 @@ manufacturer specific data.
|
|
|
17734
18029
|
rssi: number;
|
|
17735
18030
|
scanRecord: ScanRecord;
|
|
17736
18031
|
}
|
|
18032
|
+
/**
|
|
18033
|
+
* Describes the properties of a characteristic. This follows Bluetooth Core
|
|
18034
|
+
Specification BT 4.2 Vol 3 Part G 3.3.1. Characteristic Properties.
|
|
18035
|
+
*/
|
|
18036
|
+
export interface CharacteristicProperties {
|
|
18037
|
+
broadcast?: boolean;
|
|
18038
|
+
read?: boolean;
|
|
18039
|
+
writeWithoutResponse?: boolean;
|
|
18040
|
+
write?: boolean;
|
|
18041
|
+
notify?: boolean;
|
|
18042
|
+
indicate?: boolean;
|
|
18043
|
+
authenticatedSignedWrites?: boolean;
|
|
18044
|
+
extendedProperties?: boolean;
|
|
18045
|
+
}
|
|
17737
18046
|
|
|
18047
|
+
/**
|
|
18048
|
+
* Event for when a GATT operation of |type| to the peripheral with |address|
|
|
18049
|
+
happened.
|
|
18050
|
+
*/
|
|
18051
|
+
export type gattOperationReceivedPayload = {
|
|
18052
|
+
address: string;
|
|
18053
|
+
type: GATTOperationType;
|
|
18054
|
+
}
|
|
17738
18055
|
|
|
17739
18056
|
/**
|
|
17740
18057
|
* Enable the BluetoothEmulation domain.
|
|
@@ -17744,9 +18061,24 @@ manufacturer specific data.
|
|
|
17744
18061
|
* State of the simulated central.
|
|
17745
18062
|
*/
|
|
17746
18063
|
state: CentralState;
|
|
18064
|
+
/**
|
|
18065
|
+
* If the simulated central supports low-energy.
|
|
18066
|
+
*/
|
|
18067
|
+
leSupported: boolean;
|
|
17747
18068
|
}
|
|
17748
18069
|
export type enableReturnValue = {
|
|
17749
18070
|
}
|
|
18071
|
+
/**
|
|
18072
|
+
* Set the state of the simulated central.
|
|
18073
|
+
*/
|
|
18074
|
+
export type setSimulatedCentralStateParameters = {
|
|
18075
|
+
/**
|
|
18076
|
+
* State of the simulated central.
|
|
18077
|
+
*/
|
|
18078
|
+
state: CentralState;
|
|
18079
|
+
}
|
|
18080
|
+
export type setSimulatedCentralStateReturnValue = {
|
|
18081
|
+
}
|
|
17750
18082
|
/**
|
|
17751
18083
|
* Disable the BluetoothEmulation domain.
|
|
17752
18084
|
*/
|
|
@@ -17775,6 +18107,68 @@ the central.
|
|
|
17775
18107
|
}
|
|
17776
18108
|
export type simulateAdvertisementReturnValue = {
|
|
17777
18109
|
}
|
|
18110
|
+
/**
|
|
18111
|
+
* Simulates the response code from the peripheral with |address| for a
|
|
18112
|
+
GATT operation of |type|. The |code| value follows the HCI Error Codes from
|
|
18113
|
+
Bluetooth Core Specification Vol 2 Part D 1.3 List Of Error Codes.
|
|
18114
|
+
*/
|
|
18115
|
+
export type simulateGATTOperationResponseParameters = {
|
|
18116
|
+
address: string;
|
|
18117
|
+
type: GATTOperationType;
|
|
18118
|
+
code: number;
|
|
18119
|
+
}
|
|
18120
|
+
export type simulateGATTOperationResponseReturnValue = {
|
|
18121
|
+
}
|
|
18122
|
+
/**
|
|
18123
|
+
* Adds a service with |serviceUuid| to the peripheral with |address|.
|
|
18124
|
+
*/
|
|
18125
|
+
export type addServiceParameters = {
|
|
18126
|
+
address: string;
|
|
18127
|
+
serviceUuid: string;
|
|
18128
|
+
}
|
|
18129
|
+
export type addServiceReturnValue = {
|
|
18130
|
+
/**
|
|
18131
|
+
* An identifier that uniquely represents this service.
|
|
18132
|
+
*/
|
|
18133
|
+
serviceId: string;
|
|
18134
|
+
}
|
|
18135
|
+
/**
|
|
18136
|
+
* Removes the service respresented by |serviceId| from the peripheral with
|
|
18137
|
+
|address|.
|
|
18138
|
+
*/
|
|
18139
|
+
export type removeServiceParameters = {
|
|
18140
|
+
address: string;
|
|
18141
|
+
serviceId: string;
|
|
18142
|
+
}
|
|
18143
|
+
export type removeServiceReturnValue = {
|
|
18144
|
+
}
|
|
18145
|
+
/**
|
|
18146
|
+
* Adds a characteristic with |characteristicUuid| and |properties| to the
|
|
18147
|
+
service represented by |serviceId| in the peripheral with |address|.
|
|
18148
|
+
*/
|
|
18149
|
+
export type addCharacteristicParameters = {
|
|
18150
|
+
address: string;
|
|
18151
|
+
serviceId: string;
|
|
18152
|
+
characteristicUuid: string;
|
|
18153
|
+
properties: CharacteristicProperties;
|
|
18154
|
+
}
|
|
18155
|
+
export type addCharacteristicReturnValue = {
|
|
18156
|
+
/**
|
|
18157
|
+
* An identifier that uniquely represents this characteristic.
|
|
18158
|
+
*/
|
|
18159
|
+
characteristicId: string;
|
|
18160
|
+
}
|
|
18161
|
+
/**
|
|
18162
|
+
* Removes the characteristic respresented by |characteristicId| from the
|
|
18163
|
+
service respresented by |serviceId| in the peripheral with |address|.
|
|
18164
|
+
*/
|
|
18165
|
+
export type removeCharacteristicParameters = {
|
|
18166
|
+
address: string;
|
|
18167
|
+
serviceId: string;
|
|
18168
|
+
characteristicId: string;
|
|
18169
|
+
}
|
|
18170
|
+
export type removeCharacteristicReturnValue = {
|
|
18171
|
+
}
|
|
17778
18172
|
}
|
|
17779
18173
|
|
|
17780
18174
|
/**
|
|
@@ -20528,6 +20922,10 @@ Error was thrown.
|
|
|
20528
20922
|
"Network.webTransportCreated": Network.webTransportCreatedPayload;
|
|
20529
20923
|
"Network.webTransportConnectionEstablished": Network.webTransportConnectionEstablishedPayload;
|
|
20530
20924
|
"Network.webTransportClosed": Network.webTransportClosedPayload;
|
|
20925
|
+
"Network.directTCPSocketCreated": Network.directTCPSocketCreatedPayload;
|
|
20926
|
+
"Network.directTCPSocketOpened": Network.directTCPSocketOpenedPayload;
|
|
20927
|
+
"Network.directTCPSocketAborted": Network.directTCPSocketAbortedPayload;
|
|
20928
|
+
"Network.directTCPSocketClosed": Network.directTCPSocketClosedPayload;
|
|
20531
20929
|
"Network.requestWillBeSentExtraInfo": Network.requestWillBeSentExtraInfoPayload;
|
|
20532
20930
|
"Network.responseReceivedExtraInfo": Network.responseReceivedExtraInfoPayload;
|
|
20533
20931
|
"Network.responseReceivedEarlyHints": Network.responseReceivedEarlyHintsPayload;
|
|
@@ -20636,6 +21034,7 @@ Error was thrown.
|
|
|
20636
21034
|
"Preload.preloadingAttemptSourcesUpdated": Preload.preloadingAttemptSourcesUpdatedPayload;
|
|
20637
21035
|
"FedCm.dialogShown": FedCm.dialogShownPayload;
|
|
20638
21036
|
"FedCm.dialogClosed": FedCm.dialogClosedPayload;
|
|
21037
|
+
"BluetoothEmulation.gattOperationReceived": BluetoothEmulation.gattOperationReceivedPayload;
|
|
20639
21038
|
"Console.messageAdded": Console.messageAddedPayload;
|
|
20640
21039
|
"Debugger.breakpointResolved": Debugger.breakpointResolvedPayload;
|
|
20641
21040
|
"Debugger.paused": Debugger.pausedPayload;
|
|
@@ -20715,6 +21114,7 @@ Error was thrown.
|
|
|
20715
21114
|
"Browser.setDockTile": Browser.setDockTileParameters;
|
|
20716
21115
|
"Browser.executeBrowserCommand": Browser.executeBrowserCommandParameters;
|
|
20717
21116
|
"Browser.addPrivacySandboxEnrollmentOverride": Browser.addPrivacySandboxEnrollmentOverrideParameters;
|
|
21117
|
+
"Browser.addPrivacySandboxCoordinatorKeyConfig": Browser.addPrivacySandboxCoordinatorKeyConfigParameters;
|
|
20718
21118
|
"CSS.addRule": CSS.addRuleParameters;
|
|
20719
21119
|
"CSS.collectClassNames": CSS.collectClassNamesParameters;
|
|
20720
21120
|
"CSS.createStyleSheet": CSS.createStyleSheetParameters;
|
|
@@ -20847,9 +21247,12 @@ Error was thrown.
|
|
|
20847
21247
|
"Emulation.setAutoDarkModeOverride": Emulation.setAutoDarkModeOverrideParameters;
|
|
20848
21248
|
"Emulation.setCPUThrottlingRate": Emulation.setCPUThrottlingRateParameters;
|
|
20849
21249
|
"Emulation.setDefaultBackgroundColorOverride": Emulation.setDefaultBackgroundColorOverrideParameters;
|
|
21250
|
+
"Emulation.setSafeAreaInsetsOverride": Emulation.setSafeAreaInsetsOverrideParameters;
|
|
20850
21251
|
"Emulation.setDeviceMetricsOverride": Emulation.setDeviceMetricsOverrideParameters;
|
|
20851
21252
|
"Emulation.setDevicePostureOverride": Emulation.setDevicePostureOverrideParameters;
|
|
20852
21253
|
"Emulation.clearDevicePostureOverride": Emulation.clearDevicePostureOverrideParameters;
|
|
21254
|
+
"Emulation.setDisplayFeaturesOverride": Emulation.setDisplayFeaturesOverrideParameters;
|
|
21255
|
+
"Emulation.clearDisplayFeaturesOverride": Emulation.clearDisplayFeaturesOverrideParameters;
|
|
20853
21256
|
"Emulation.setScrollbarsHidden": Emulation.setScrollbarsHiddenParameters;
|
|
20854
21257
|
"Emulation.setDocumentCookieDisabled": Emulation.setDocumentCookieDisabledParameters;
|
|
20855
21258
|
"Emulation.setEmitTouchEventsForMouse": Emulation.setEmitTouchEventsForMouseParameters;
|
|
@@ -21189,9 +21592,15 @@ Error was thrown.
|
|
|
21189
21592
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
|
21190
21593
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
|
21191
21594
|
"BluetoothEmulation.enable": BluetoothEmulation.enableParameters;
|
|
21595
|
+
"BluetoothEmulation.setSimulatedCentralState": BluetoothEmulation.setSimulatedCentralStateParameters;
|
|
21192
21596
|
"BluetoothEmulation.disable": BluetoothEmulation.disableParameters;
|
|
21193
21597
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralParameters;
|
|
21194
21598
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementParameters;
|
|
21599
|
+
"BluetoothEmulation.simulateGATTOperationResponse": BluetoothEmulation.simulateGATTOperationResponseParameters;
|
|
21600
|
+
"BluetoothEmulation.addService": BluetoothEmulation.addServiceParameters;
|
|
21601
|
+
"BluetoothEmulation.removeService": BluetoothEmulation.removeServiceParameters;
|
|
21602
|
+
"BluetoothEmulation.addCharacteristic": BluetoothEmulation.addCharacteristicParameters;
|
|
21603
|
+
"BluetoothEmulation.removeCharacteristic": BluetoothEmulation.removeCharacteristicParameters;
|
|
21195
21604
|
"Console.clearMessages": Console.clearMessagesParameters;
|
|
21196
21605
|
"Console.disable": Console.disableParameters;
|
|
21197
21606
|
"Console.enable": Console.enableParameters;
|
|
@@ -21330,6 +21739,7 @@ Error was thrown.
|
|
|
21330
21739
|
"Browser.setDockTile": Browser.setDockTileReturnValue;
|
|
21331
21740
|
"Browser.executeBrowserCommand": Browser.executeBrowserCommandReturnValue;
|
|
21332
21741
|
"Browser.addPrivacySandboxEnrollmentOverride": Browser.addPrivacySandboxEnrollmentOverrideReturnValue;
|
|
21742
|
+
"Browser.addPrivacySandboxCoordinatorKeyConfig": Browser.addPrivacySandboxCoordinatorKeyConfigReturnValue;
|
|
21333
21743
|
"CSS.addRule": CSS.addRuleReturnValue;
|
|
21334
21744
|
"CSS.collectClassNames": CSS.collectClassNamesReturnValue;
|
|
21335
21745
|
"CSS.createStyleSheet": CSS.createStyleSheetReturnValue;
|
|
@@ -21462,9 +21872,12 @@ Error was thrown.
|
|
|
21462
21872
|
"Emulation.setAutoDarkModeOverride": Emulation.setAutoDarkModeOverrideReturnValue;
|
|
21463
21873
|
"Emulation.setCPUThrottlingRate": Emulation.setCPUThrottlingRateReturnValue;
|
|
21464
21874
|
"Emulation.setDefaultBackgroundColorOverride": Emulation.setDefaultBackgroundColorOverrideReturnValue;
|
|
21875
|
+
"Emulation.setSafeAreaInsetsOverride": Emulation.setSafeAreaInsetsOverrideReturnValue;
|
|
21465
21876
|
"Emulation.setDeviceMetricsOverride": Emulation.setDeviceMetricsOverrideReturnValue;
|
|
21466
21877
|
"Emulation.setDevicePostureOverride": Emulation.setDevicePostureOverrideReturnValue;
|
|
21467
21878
|
"Emulation.clearDevicePostureOverride": Emulation.clearDevicePostureOverrideReturnValue;
|
|
21879
|
+
"Emulation.setDisplayFeaturesOverride": Emulation.setDisplayFeaturesOverrideReturnValue;
|
|
21880
|
+
"Emulation.clearDisplayFeaturesOverride": Emulation.clearDisplayFeaturesOverrideReturnValue;
|
|
21468
21881
|
"Emulation.setScrollbarsHidden": Emulation.setScrollbarsHiddenReturnValue;
|
|
21469
21882
|
"Emulation.setDocumentCookieDisabled": Emulation.setDocumentCookieDisabledReturnValue;
|
|
21470
21883
|
"Emulation.setEmitTouchEventsForMouse": Emulation.setEmitTouchEventsForMouseReturnValue;
|
|
@@ -21804,9 +22217,15 @@ Error was thrown.
|
|
|
21804
22217
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
|
21805
22218
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
|
21806
22219
|
"BluetoothEmulation.enable": BluetoothEmulation.enableReturnValue;
|
|
22220
|
+
"BluetoothEmulation.setSimulatedCentralState": BluetoothEmulation.setSimulatedCentralStateReturnValue;
|
|
21807
22221
|
"BluetoothEmulation.disable": BluetoothEmulation.disableReturnValue;
|
|
21808
22222
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralReturnValue;
|
|
21809
22223
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementReturnValue;
|
|
22224
|
+
"BluetoothEmulation.simulateGATTOperationResponse": BluetoothEmulation.simulateGATTOperationResponseReturnValue;
|
|
22225
|
+
"BluetoothEmulation.addService": BluetoothEmulation.addServiceReturnValue;
|
|
22226
|
+
"BluetoothEmulation.removeService": BluetoothEmulation.removeServiceReturnValue;
|
|
22227
|
+
"BluetoothEmulation.addCharacteristic": BluetoothEmulation.addCharacteristicReturnValue;
|
|
22228
|
+
"BluetoothEmulation.removeCharacteristic": BluetoothEmulation.removeCharacteristicReturnValue;
|
|
21810
22229
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
|
21811
22230
|
"Console.disable": Console.disableReturnValue;
|
|
21812
22231
|
"Console.enable": Console.enableReturnValue;
|