mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	fix(chromium): work around about:blank issue on Chromium (#14068)
fix(chromium): work around about:blank issue on Chromium We don't receive the `loaderId` which translates to `newDocumentId`, so we expect the same-document navigation. Instead, we can wait for any new-document navigation as a workaround, only for `about:blank`. This also reverts commit f0f65fa247ac9cb594acd45b52dc851e60109172.
This commit is contained in:
		
							parent
							
								
									39489931d1
								
							
						
					
					
						commit
						ba0cfaeb2d
					
				| @ -1,6 +1,6 @@ | ||||
| # 🎭 Playwright | ||||
| 
 | ||||
| [](https://www.npmjs.com/package/playwright) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[](https://webkit.org/)<!-- GEN:stop --> | ||||
| [](https://www.npmjs.com/package/playwright) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[](https://webkit.org/)<!-- GEN:stop --> | ||||
| 
 | ||||
| ## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright/) | ||||
| 
 | ||||
| @ -8,7 +8,7 @@ Playwright is a framework for Web Testing and Automation. It allows testing [Chr | ||||
| 
 | ||||
| |          | Linux | macOS | Windows | | ||||
| |   :---   | :---: | :---: | :---:   | | ||||
| | Chromium <!-- GEN:chromium-version -->101.0.4951.41<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||||
| | Chromium <!-- GEN:chromium-version -->102.0.5005.40<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||||
| | WebKit <!-- GEN:webkit-version -->15.4<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||||
| | Firefox <!-- GEN:firefox-version -->99.0.1<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||||
| 
 | ||||
|  | ||||
| @ -3,15 +3,15 @@ | ||||
|   "browsers": [ | ||||
|     { | ||||
|       "name": "chromium", | ||||
|       "revision": "1003", | ||||
|       "revision": "1005", | ||||
|       "installByDefault": true, | ||||
|       "browserVersion": "101.0.4951.41" | ||||
|       "browserVersion": "102.0.5005.40" | ||||
|     }, | ||||
|     { | ||||
|       "name": "chromium-with-symbols", | ||||
|       "revision": "1003", | ||||
|       "revision": "1005", | ||||
|       "installByDefault": false, | ||||
|       "browserVersion": "101.0.4951.41" | ||||
|       "browserVersion": "102.0.5005.40" | ||||
|     }, | ||||
|     { | ||||
|       "name": "chromium-tip-of-tree", | ||||
|  | ||||
| @ -26,7 +26,6 @@ export const platformToFontFamilies: { [key in 'linux'|'mac'|'win']: Protocol.Pa | ||||
|       'sansSerif': 'Arial', | ||||
|       'cursive': 'Comic Sans MS', | ||||
|       'fantasy': 'Impact', | ||||
|       'pictograph': 'Times New Roman' | ||||
|     } | ||||
|   }, | ||||
|   'mac': { | ||||
| @ -37,7 +36,6 @@ export const platformToFontFamilies: { [key in 'linux'|'mac'|'win']: Protocol.Pa | ||||
|       'sansSerif': 'Helvetica', | ||||
|       'cursive': 'Apple Chancery', | ||||
|       'fantasy': 'Papyrus', | ||||
|       'pictograph': 'Apple Color Emoji' | ||||
|     }, | ||||
|     'forScripts': [ | ||||
|       { | ||||
| @ -85,7 +83,6 @@ export const platformToFontFamilies: { [key in 'linux'|'mac'|'win']: Protocol.Pa | ||||
|       'sansSerif': 'Arial', | ||||
|       'cursive': 'Comic Sans MS', | ||||
|       'fantasy': 'Impact', | ||||
|       'pictograph': 'Segoe UI Symbol' | ||||
|     }, | ||||
|     'forScripts': [ | ||||
|       { | ||||
|  | ||||
| @ -807,7 +807,7 @@ CORS RFC1918 enforcement. | ||||
|       resourceIPAddressSpace?: Network.IPAddressSpace; | ||||
|       clientSecurityState?: Network.ClientSecurityState; | ||||
|     } | ||||
|     export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"InvalidAttributionSourceEventId"|"InvalidAttributionData"|"AttributionSourceUntrustworthyOrigin"|"AttributionUntrustworthyOrigin"|"AttributionTriggerDataTooLarge"|"AttributionEventSourceTriggerDataTooLarge"|"InvalidAttributionSourceExpiry"|"InvalidAttributionSourcePriority"|"InvalidEventSourceTriggerData"|"InvalidTriggerPriority"|"InvalidTriggerDedupKey"; | ||||
|     export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"InvalidAttributionSourceEventId"|"AttributionSourceUntrustworthyOrigin"|"AttributionUntrustworthyOrigin"|"InvalidAttributionSourceExpiry"|"InvalidAttributionSourcePriority"; | ||||
|     /** | ||||
|      * Details for issues around "Attribution Reporting API" usage. | ||||
| Explainer: https://github.com/WICG/conversion-measurement-api
 | ||||
| @ -849,6 +849,7 @@ instead of "limited-quirks". | ||||
|       errorType: GenericIssueErrorType; | ||||
|       frameId?: Page.FrameId; | ||||
|     } | ||||
|     export type DeprecationIssueType = "DeprecationExample"|"Untranslated"; | ||||
|     /** | ||||
|      * This issue tracks information needed to print a deprecation message. | ||||
| The formatting is inherited from the old console.log version, see more at: | ||||
| @ -870,7 +871,8 @@ https://www.chromestatus.com/feature/5684870116278272 for more details." | ||||
|       /** | ||||
|        * The id of an untranslated deprecation issue e.g. PrefixedStorageInfo. | ||||
|        */ | ||||
|       deprecationType: string; | ||||
|       deprecationType?: string; | ||||
|       type: DeprecationIssueType; | ||||
|     } | ||||
|     export type ClientHintIssueReason = "MetaTagAllowListInvalidOrigin"|"MetaTagModifiedHTML"; | ||||
|     export interface FederatedAuthRequestIssueDetails { | ||||
| @ -882,7 +884,7 @@ Should be updated alongside RequestIdTokenStatus in | ||||
| third_party/blink/public/mojom/devtools/inspector_issue.mojom to include | ||||
| all cases except for success. | ||||
|      */ | ||||
|     export type FederatedAuthRequestIssueReason = "ApprovalDeclined"|"TooManyRequests"|"ManifestHttpNotFound"|"ManifestNoResponse"|"ManifestInvalidResponse"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataMissingPrivacyPolicyUrl"|"DisabledInSettings"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenInvalidRequest"|"ErrorIdToken"|"Canceled"; | ||||
|     export type FederatedAuthRequestIssueReason = "ApprovalDeclined"|"TooManyRequests"|"ManifestListHttpNotFound"|"ManifestListNoResponse"|"ManifestListInvalidResponse"|"ManifestNotInManifestList"|"ManifestListTooBig"|"ManifestHttpNotFound"|"ManifestNoResponse"|"ManifestInvalidResponse"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataMissingPrivacyPolicyUrl"|"DisabledInSettings"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenInvalidRequest"|"ErrorIdToken"|"Canceled"; | ||||
|     /** | ||||
|      * This issue tracks client hints related issues. It's used to deprecate old | ||||
| features, encourage the use of new ones, and provide general guidance. | ||||
| @ -10179,7 +10181,7 @@ Backend then generates 'inspectNodeRequested' event upon element selection. | ||||
|      * All Permissions Policy features. This enum should match the one defined | ||||
| in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5. | ||||
|      */ | ||||
|     export type PermissionsPolicyFeature = "accelerometer"|"ambient-light-sensor"|"attribution-reporting"|"autoplay"|"browsing-topics"|"camera"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-rtt"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-full"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-reduced"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"ch-partitioned-cookies"|"clipboard-read"|"clipboard-write"|"cross-origin-isolated"|"direct-sockets"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"storage-access-api"|"sync-xhr"|"trust-token-redemption"|"usb"|"vertical-scroll"|"web-share"|"window-placement"|"xr-spatial-tracking"; | ||||
|     export type PermissionsPolicyFeature = "accelerometer"|"ambient-light-sensor"|"attribution-reporting"|"autoplay"|"browsing-topics"|"camera"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-partitioned-cookies"|"ch-prefers-color-scheme"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-full"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-reduced"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"cross-origin-isolated"|"direct-sockets"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"storage-access-api"|"sync-xhr"|"trust-token-redemption"|"usb"|"vertical-scroll"|"web-share"|"window-placement"|"xr-spatial-tracking"; | ||||
|     /** | ||||
|      * Reason for a permissions policy feature to be disabled. | ||||
|      */ | ||||
| @ -10563,10 +10565,6 @@ Example URLs: http://www.google.com/file.html -> "google.com" | ||||
|        * The fantasy font-family. | ||||
|        */ | ||||
|       fantasy?: string; | ||||
|       /** | ||||
|        * The pictograph font-family. | ||||
|        */ | ||||
|       pictograph?: string; | ||||
|     } | ||||
|     /** | ||||
|      * Font families collection for a script. | ||||
| @ -10644,7 +10642,7 @@ Example URLs: http://www.google.com/file.html -> "google.com" | ||||
|     /** | ||||
|      * List of not restored reasons for back-forward cache. | ||||
|      */ | ||||
|     export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"GrantedMediaStreamAccess"|"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"|"OptInUnloadHeaderNotPresent"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"DedicatedWorkerOrWorklet"|"OutstandingNetworkRequestOthers"|"OutstandingIndexedDBTransaction"|"RequestedNotificationsPermission"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"IndexedDBConnection"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"Portal"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"Dummy"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSession"|"ContentMediaSessionService"|"ContentScreenReader"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"; | ||||
|     export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"GrantedMediaStreamAccess"|"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"|"OptInUnloadHeaderNotPresent"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"DedicatedWorkerOrWorklet"|"OutstandingNetworkRequestOthers"|"OutstandingIndexedDBTransaction"|"RequestedNotificationsPermission"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"IndexedDBConnection"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"Portal"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"Dummy"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSession"|"ContentMediaSessionService"|"ContentScreenReader"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"; | ||||
|     /** | ||||
|      * Types of not restored reasons for back-forward cache. | ||||
|      */ | ||||
| @ -10679,6 +10677,10 @@ dependent on the reason: | ||||
|        */ | ||||
|       children: BackForwardCacheNotRestoredExplanationTree[]; | ||||
|     } | ||||
|     /** | ||||
|      * List of FinalStatus reasons for Prerender2. | ||||
|      */ | ||||
|     export type PrerenderFinalStatus = "Activated"; | ||||
|      | ||||
|     export type domContentEventFiredPayload = { | ||||
|       timestamp: Network.MonotonicTime; | ||||
| @ -10951,6 +10953,17 @@ when bfcache navigation fails. | ||||
|        */ | ||||
|       notRestoredExplanationsTree?: BackForwardCacheNotRestoredExplanationTree; | ||||
|     } | ||||
|     /** | ||||
|      * Fired when a prerender attempt is completed. | ||||
|      */ | ||||
|     export type prerenderAttemptCompletedPayload = { | ||||
|       /** | ||||
|        * The frame id of the frame initiating prerendering. | ||||
|        */ | ||||
|       initiatingFrameId: FrameId; | ||||
|       prerenderingUrl: string; | ||||
|       finalStatus: PrerenderFinalStatus; | ||||
|     } | ||||
|     export type loadEventFiredPayload = { | ||||
|       timestamp: Network.MonotonicTime; | ||||
|     } | ||||
| @ -11263,15 +11276,15 @@ information in the `cookies` field. | ||||
|     } | ||||
|     export type getLayoutMetricsReturnValue = { | ||||
|       /** | ||||
|        * Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssLayoutViewport` instead. | ||||
|        * Deprecated metrics relating to the layout viewport. Is in device pixels. Use `cssLayoutViewport` instead. | ||||
|        */ | ||||
|       layoutViewport: LayoutViewport; | ||||
|       /** | ||||
|        * Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssVisualViewport` instead. | ||||
|        * Deprecated metrics relating to the visual viewport. Is in device pixels. Use `cssVisualViewport` instead. | ||||
|        */ | ||||
|       visualViewport: VisualViewport; | ||||
|       /** | ||||
|        * Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssContentSize` instead. | ||||
|        * Deprecated size of scrollable area. Is in DP. Use `cssContentSize` instead. | ||||
|        */ | ||||
|       contentSize: DOM.Rect; | ||||
|       /** | ||||
| @ -14517,19 +14530,37 @@ the error log level into the PlayerError type. | ||||
|       timestamp: Timestamp; | ||||
|       value: string; | ||||
|     } | ||||
|     /** | ||||
|      * Represents logged source line numbers reported in an error. | ||||
| NOTE: file and line are from chromium c++ implementation code, not js. | ||||
|      */ | ||||
|     export interface PlayerErrorSourceLocation { | ||||
|       file: string; | ||||
|       line: number; | ||||
|     } | ||||
|     /** | ||||
|      * Corresponds to kMediaError | ||||
|      */ | ||||
|     export interface PlayerError { | ||||
|       type: "pipeline_error"|"media_error"; | ||||
|       errorType: string; | ||||
|       /** | ||||
|        * When this switches to using media::Status instead of PipelineStatus | ||||
| we can remove "errorCode" and replace it with the fields from | ||||
| a Status instance. This also seems like a duplicate of the error | ||||
| level enum - there is a todo bug to have that level removed and | ||||
| use this instead. (crbug.com/1068454) | ||||
|        * Code is the numeric enum entry for a specific set of error codes, such | ||||
| as PipelineStatusCodes in media/base/pipeline_status.h | ||||
|        */ | ||||
|       errorCode: string; | ||||
|       code: number; | ||||
|       /** | ||||
|        * A trace of where this error was caused / where it passed through. | ||||
|        */ | ||||
|       stack: PlayerErrorSourceLocation[]; | ||||
|       /** | ||||
|        * Errors potentially have a root cause error, ie, a DecoderError might be | ||||
| caused by an WindowsError | ||||
|        */ | ||||
|       cause: PlayerError[]; | ||||
|       /** | ||||
|        * Extra data attached to an error, such as an HRESULT, Video Codec, etc. | ||||
|        */ | ||||
|       data: { [key: string]: string }; | ||||
|     } | ||||
|      | ||||
|     /** | ||||
| @ -16084,6 +16115,15 @@ other objects in their object group. | ||||
|      * Unique script identifier. | ||||
|      */ | ||||
|     export type ScriptId = string; | ||||
|     /** | ||||
|      * Represents the value serialiazed by the WebDriver BiDi specification | ||||
| https://w3c.github.io/webdriver-bidi.
 | ||||
|      */ | ||||
|     export interface WebDriverValue { | ||||
|       type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window"; | ||||
|       value?: any; | ||||
|       objectId?: string; | ||||
|     } | ||||
|     /** | ||||
|      * Unique object identifier. | ||||
|      */ | ||||
| @ -16124,6 +16164,10 @@ property. | ||||
|        * String representation of the object. | ||||
|        */ | ||||
|       description?: string; | ||||
|       /** | ||||
|        * WebDriver BiDi representation of the value. | ||||
|        */ | ||||
|       webDriverValue?: WebDriverValue; | ||||
|       /** | ||||
|        * Unique object identifier (for non-primitive values). | ||||
|        */ | ||||
| @ -16643,6 +16687,10 @@ specified and objectId is, objectGroup will be inherited from object. | ||||
|        * Whether to throw an exception if side effect cannot be ruled out during evaluation. | ||||
|        */ | ||||
|       throwOnSideEffect?: boolean; | ||||
|       /** | ||||
|        * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
 | ||||
|        */ | ||||
|       generateWebDriverValue?: boolean; | ||||
|     } | ||||
|     export type callFunctionOnReturnValue = { | ||||
|       /** | ||||
| @ -16790,6 +16838,10 @@ boundaries). | ||||
| This is mutually exclusive with `contextId`. | ||||
|        */ | ||||
|       uniqueContextId?: string; | ||||
|       /** | ||||
|        * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
 | ||||
|        */ | ||||
|       generateWebDriverValue?: boolean; | ||||
|     } | ||||
|     export type evaluateReturnValue = { | ||||
|       /** | ||||
| @ -17201,6 +17253,7 @@ Error was thrown. | ||||
|     "Page.javascriptDialogOpening": Page.javascriptDialogOpeningPayload; | ||||
|     "Page.lifecycleEvent": Page.lifecycleEventPayload; | ||||
|     "Page.backForwardCacheNotUsed": Page.backForwardCacheNotUsedPayload; | ||||
|     "Page.prerenderAttemptCompleted": Page.prerenderAttemptCompletedPayload; | ||||
|     "Page.loadEventFired": Page.loadEventFiredPayload; | ||||
|     "Page.navigatedWithinDocument": Page.navigatedWithinDocumentPayload; | ||||
|     "Page.screencastFrame": Page.screencastFramePayload; | ||||
|  | ||||
| @ -110,7 +110,7 @@ | ||||
|     "defaultBrowserType": "webkit" | ||||
|   }, | ||||
|   "Galaxy S5": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 640 | ||||
| @ -121,7 +121,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy S5 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 360 | ||||
| @ -132,7 +132,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy S8": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 740 | ||||
| @ -143,7 +143,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy S8 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 740, | ||||
|       "height": 360 | ||||
| @ -154,7 +154,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy S9+": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 320, | ||||
|       "height": 658 | ||||
| @ -165,7 +165,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy S9+ landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 658, | ||||
|       "height": 320 | ||||
| @ -176,7 +176,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy Tab S4": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 712, | ||||
|       "height": 1138 | ||||
| @ -187,7 +187,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Galaxy Tab S4 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 1138, | ||||
|       "height": 712 | ||||
| @ -858,7 +858,7 @@ | ||||
|     "defaultBrowserType": "webkit" | ||||
|   }, | ||||
|   "LG Optimus L70": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 384, | ||||
|       "height": 640 | ||||
| @ -869,7 +869,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "LG Optimus L70 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; U; Android 4.4.2; en-us; LGMS323 Build/KOT49I.MS32310c) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 384 | ||||
| @ -880,7 +880,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Microsoft Lumia 550": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 360 | ||||
| @ -891,7 +891,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Microsoft Lumia 550 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 640 | ||||
| @ -902,7 +902,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Microsoft Lumia 950": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 640 | ||||
| @ -913,7 +913,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Microsoft Lumia 950 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 950) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36 Edge/14.14263", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 360 | ||||
| @ -924,7 +924,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 10": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 800, | ||||
|       "height": 1280 | ||||
| @ -935,7 +935,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 10 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 1280, | ||||
|       "height": 800 | ||||
| @ -946,7 +946,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 4": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 384, | ||||
|       "height": 640 | ||||
| @ -957,7 +957,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 4 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 384 | ||||
| @ -968,7 +968,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 5": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 640 | ||||
| @ -979,7 +979,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 5 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 360 | ||||
| @ -990,7 +990,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 5X": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 412, | ||||
|       "height": 732 | ||||
| @ -1001,7 +1001,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 5X landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 732, | ||||
|       "height": 412 | ||||
| @ -1012,7 +1012,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 6": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 412, | ||||
|       "height": 732 | ||||
| @ -1023,7 +1023,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 6 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 732, | ||||
|       "height": 412 | ||||
| @ -1034,7 +1034,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 6P": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 412, | ||||
|       "height": 732 | ||||
| @ -1045,7 +1045,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 6P landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 732, | ||||
|       "height": 412 | ||||
| @ -1056,7 +1056,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 7": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 600, | ||||
|       "height": 960 | ||||
| @ -1067,7 +1067,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Nexus 7 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 960, | ||||
|       "height": 600 | ||||
| @ -1122,7 +1122,7 @@ | ||||
|     "defaultBrowserType": "webkit" | ||||
|   }, | ||||
|   "Pixel 2": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 411, | ||||
|       "height": 731 | ||||
| @ -1133,7 +1133,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 2 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 731, | ||||
|       "height": 411 | ||||
| @ -1144,7 +1144,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 2 XL": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 411, | ||||
|       "height": 823 | ||||
| @ -1155,7 +1155,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 2 XL landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Pixel 2 XL Build/OPD1.170816.004) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 823, | ||||
|       "height": 411 | ||||
| @ -1166,7 +1166,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 3": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 393, | ||||
|       "height": 786 | ||||
| @ -1177,7 +1177,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 3 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 786, | ||||
|       "height": 393 | ||||
| @ -1188,7 +1188,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 4": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 353, | ||||
|       "height": 745 | ||||
| @ -1199,7 +1199,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 4 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 745, | ||||
|       "height": 353 | ||||
| @ -1210,7 +1210,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 4a (5G)": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "screen": { | ||||
|       "width": 412, | ||||
|       "height": 892 | ||||
| @ -1225,7 +1225,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 4a (5G) landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "screen": { | ||||
|       "height": 892, | ||||
|       "width": 412 | ||||
| @ -1240,7 +1240,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 5": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "screen": { | ||||
|       "width": 393, | ||||
|       "height": 851 | ||||
| @ -1255,7 +1255,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Pixel 5 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "screen": { | ||||
|       "width": 851, | ||||
|       "height": 393 | ||||
| @ -1270,7 +1270,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Moto G4": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 360, | ||||
|       "height": 640 | ||||
| @ -1281,7 +1281,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Moto G4 landscape": { | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Mobile Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Mobile Safari/537.36", | ||||
|     "viewport": { | ||||
|       "width": 640, | ||||
|       "height": 360 | ||||
| @ -1292,7 +1292,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Desktop Chrome HiDPI": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "screen": { | ||||
|       "width": 1792, | ||||
|       "height": 1120 | ||||
| @ -1307,7 +1307,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Desktop Edge HiDPI": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36 Edg/101.0.4951.41", | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36 Edg/102.0.5005.40", | ||||
|     "screen": { | ||||
|       "width": 1792, | ||||
|       "height": 1120 | ||||
| @ -1352,7 +1352,7 @@ | ||||
|     "defaultBrowserType": "webkit" | ||||
|   }, | ||||
|   "Desktop Chrome": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36", | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36", | ||||
|     "screen": { | ||||
|       "width": 1920, | ||||
|       "height": 1080 | ||||
| @ -1367,7 +1367,7 @@ | ||||
|     "defaultBrowserType": "chromium" | ||||
|   }, | ||||
|   "Desktop Edge": { | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.41 Safari/537.36 Edg/101.0.4951.41", | ||||
|     "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.40 Safari/537.36 Edg/102.0.5005.40", | ||||
|     "screen": { | ||||
|       "width": 1920, | ||||
|       "height": 1080 | ||||
|  | ||||
| @ -636,6 +636,14 @@ export class Frame extends SdkObject { | ||||
|         } | ||||
|         if (event.error) | ||||
|           throw event.error; | ||||
|       } else if (isAboutBlank(url)) { | ||||
|         // Workaround chromium issue: https://github.com/microsoft/playwright/issues/14047
 | ||||
|         sameDocument.dispose(); | ||||
|         event = await helper.waitForEvent(progress, this, Frame.Events.Navigation, (event: NavigationEvent) => { | ||||
|           return event.newDocument && !event.error; | ||||
|         }).promise; | ||||
|         if (event.error) | ||||
|           throw event.error; | ||||
|       } else { | ||||
|         event = await sameDocument.promise; | ||||
|       } | ||||
| @ -1748,3 +1756,7 @@ function verifyLifecycle(name: string, waitUntil: types.LifecycleEvent): types.L | ||||
|   return waitUntil; | ||||
| } | ||||
| 
 | ||||
| function isAboutBlank(url: string) { | ||||
|   return url === 'about:blank' || url.startsWith('about:blank#'); | ||||
| } | ||||
| 
 | ||||
|  | ||||
							
								
								
									
										91
									
								
								packages/playwright-core/types/protocol.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										91
									
								
								packages/playwright-core/types/protocol.d.ts
									
									
									
									
										vendored
									
									
								
							| @ -807,7 +807,7 @@ CORS RFC1918 enforcement. | ||||
|       resourceIPAddressSpace?: Network.IPAddressSpace; | ||||
|       clientSecurityState?: Network.ClientSecurityState; | ||||
|     } | ||||
|     export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"InvalidAttributionSourceEventId"|"InvalidAttributionData"|"AttributionSourceUntrustworthyOrigin"|"AttributionUntrustworthyOrigin"|"AttributionTriggerDataTooLarge"|"AttributionEventSourceTriggerDataTooLarge"|"InvalidAttributionSourceExpiry"|"InvalidAttributionSourcePriority"|"InvalidEventSourceTriggerData"|"InvalidTriggerPriority"|"InvalidTriggerDedupKey"; | ||||
|     export type AttributionReportingIssueType = "PermissionPolicyDisabled"|"InvalidAttributionSourceEventId"|"AttributionSourceUntrustworthyOrigin"|"AttributionUntrustworthyOrigin"|"InvalidAttributionSourceExpiry"|"InvalidAttributionSourcePriority"; | ||||
|     /** | ||||
|      * Details for issues around "Attribution Reporting API" usage. | ||||
| Explainer: https://github.com/WICG/conversion-measurement-api
 | ||||
| @ -849,6 +849,7 @@ instead of "limited-quirks". | ||||
|       errorType: GenericIssueErrorType; | ||||
|       frameId?: Page.FrameId; | ||||
|     } | ||||
|     export type DeprecationIssueType = "DeprecationExample"|"Untranslated"; | ||||
|     /** | ||||
|      * This issue tracks information needed to print a deprecation message. | ||||
| The formatting is inherited from the old console.log version, see more at: | ||||
| @ -870,7 +871,8 @@ https://www.chromestatus.com/feature/5684870116278272 for more details." | ||||
|       /** | ||||
|        * The id of an untranslated deprecation issue e.g. PrefixedStorageInfo. | ||||
|        */ | ||||
|       deprecationType: string; | ||||
|       deprecationType?: string; | ||||
|       type: DeprecationIssueType; | ||||
|     } | ||||
|     export type ClientHintIssueReason = "MetaTagAllowListInvalidOrigin"|"MetaTagModifiedHTML"; | ||||
|     export interface FederatedAuthRequestIssueDetails { | ||||
| @ -882,7 +884,7 @@ Should be updated alongside RequestIdTokenStatus in | ||||
| third_party/blink/public/mojom/devtools/inspector_issue.mojom to include | ||||
| all cases except for success. | ||||
|      */ | ||||
|     export type FederatedAuthRequestIssueReason = "ApprovalDeclined"|"TooManyRequests"|"ManifestHttpNotFound"|"ManifestNoResponse"|"ManifestInvalidResponse"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataMissingPrivacyPolicyUrl"|"DisabledInSettings"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenInvalidRequest"|"ErrorIdToken"|"Canceled"; | ||||
|     export type FederatedAuthRequestIssueReason = "ApprovalDeclined"|"TooManyRequests"|"ManifestListHttpNotFound"|"ManifestListNoResponse"|"ManifestListInvalidResponse"|"ManifestNotInManifestList"|"ManifestListTooBig"|"ManifestHttpNotFound"|"ManifestNoResponse"|"ManifestInvalidResponse"|"ClientMetadataHttpNotFound"|"ClientMetadataNoResponse"|"ClientMetadataInvalidResponse"|"ClientMetadataMissingPrivacyPolicyUrl"|"DisabledInSettings"|"ErrorFetchingSignin"|"InvalidSigninResponse"|"AccountsHttpNotFound"|"AccountsNoResponse"|"AccountsInvalidResponse"|"IdTokenHttpNotFound"|"IdTokenNoResponse"|"IdTokenInvalidResponse"|"IdTokenInvalidRequest"|"ErrorIdToken"|"Canceled"; | ||||
|     /** | ||||
|      * This issue tracks client hints related issues. It's used to deprecate old | ||||
| features, encourage the use of new ones, and provide general guidance. | ||||
| @ -10179,7 +10181,7 @@ Backend then generates 'inspectNodeRequested' event upon element selection. | ||||
|      * All Permissions Policy features. This enum should match the one defined | ||||
| in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5. | ||||
|      */ | ||||
|     export type PermissionsPolicyFeature = "accelerometer"|"ambient-light-sensor"|"attribution-reporting"|"autoplay"|"browsing-topics"|"camera"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-prefers-color-scheme"|"ch-rtt"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-full"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-reduced"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"ch-partitioned-cookies"|"clipboard-read"|"clipboard-write"|"cross-origin-isolated"|"direct-sockets"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"storage-access-api"|"sync-xhr"|"trust-token-redemption"|"usb"|"vertical-scroll"|"web-share"|"window-placement"|"xr-spatial-tracking"; | ||||
|     export type PermissionsPolicyFeature = "accelerometer"|"ambient-light-sensor"|"attribution-reporting"|"autoplay"|"browsing-topics"|"camera"|"ch-dpr"|"ch-device-memory"|"ch-downlink"|"ch-ect"|"ch-partitioned-cookies"|"ch-prefers-color-scheme"|"ch-rtt"|"ch-save-data"|"ch-ua"|"ch-ua-arch"|"ch-ua-bitness"|"ch-ua-platform"|"ch-ua-model"|"ch-ua-mobile"|"ch-ua-full"|"ch-ua-full-version"|"ch-ua-full-version-list"|"ch-ua-platform-version"|"ch-ua-reduced"|"ch-ua-wow64"|"ch-viewport-height"|"ch-viewport-width"|"ch-width"|"clipboard-read"|"clipboard-write"|"cross-origin-isolated"|"direct-sockets"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"publickey-credentials-get"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"storage-access-api"|"sync-xhr"|"trust-token-redemption"|"usb"|"vertical-scroll"|"web-share"|"window-placement"|"xr-spatial-tracking"; | ||||
|     /** | ||||
|      * Reason for a permissions policy feature to be disabled. | ||||
|      */ | ||||
| @ -10563,10 +10565,6 @@ Example URLs: http://www.google.com/file.html -> "google.com" | ||||
|        * The fantasy font-family. | ||||
|        */ | ||||
|       fantasy?: string; | ||||
|       /** | ||||
|        * The pictograph font-family. | ||||
|        */ | ||||
|       pictograph?: string; | ||||
|     } | ||||
|     /** | ||||
|      * Font families collection for a script. | ||||
| @ -10644,7 +10642,7 @@ Example URLs: http://www.google.com/file.html -> "google.com" | ||||
|     /** | ||||
|      * List of not restored reasons for back-forward cache. | ||||
|      */ | ||||
|     export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"GrantedMediaStreamAccess"|"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"|"OptInUnloadHeaderNotPresent"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"DedicatedWorkerOrWorklet"|"OutstandingNetworkRequestOthers"|"OutstandingIndexedDBTransaction"|"RequestedNotificationsPermission"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"IndexedDBConnection"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"Portal"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"Dummy"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSession"|"ContentMediaSessionService"|"ContentScreenReader"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"; | ||||
|     export type BackForwardCacheNotRestoredReason = "NotPrimaryMainFrame"|"BackForwardCacheDisabled"|"RelatedActiveContentsExist"|"HTTPStatusNotOK"|"SchemeNotHTTPOrHTTPS"|"Loading"|"WasGrantedMediaAccess"|"DisableForRenderFrameHostCalled"|"DomainNotAllowed"|"HTTPMethodNotGET"|"SubframeIsNavigating"|"Timeout"|"CacheLimit"|"JavaScriptExecution"|"RendererProcessKilled"|"RendererProcessCrashed"|"GrantedMediaStreamAccess"|"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"|"OptInUnloadHeaderNotPresent"|"UnloadHandlerExistsInMainFrame"|"UnloadHandlerExistsInSubFrame"|"ServiceWorkerUnregistration"|"CacheControlNoStore"|"CacheControlNoStoreCookieModified"|"CacheControlNoStoreHTTPOnlyCookieModified"|"NoResponseHead"|"Unknown"|"ActivationNavigationsDisallowedForBug1234857"|"ErrorDocument"|"FencedFramesEmbedder"|"WebSocket"|"WebTransport"|"WebRTC"|"MainResourceHasCacheControlNoStore"|"MainResourceHasCacheControlNoCache"|"SubresourceHasCacheControlNoStore"|"SubresourceHasCacheControlNoCache"|"ContainsPlugins"|"DocumentLoaded"|"DedicatedWorkerOrWorklet"|"OutstandingNetworkRequestOthers"|"OutstandingIndexedDBTransaction"|"RequestedNotificationsPermission"|"RequestedMIDIPermission"|"RequestedAudioCapturePermission"|"RequestedVideoCapturePermission"|"RequestedBackForwardCacheBlockedSensors"|"RequestedBackgroundWorkPermission"|"BroadcastChannel"|"IndexedDBConnection"|"WebXR"|"SharedWorker"|"WebLocks"|"WebHID"|"WebShare"|"RequestedStorageAccessGrant"|"WebNfc"|"OutstandingNetworkRequestFetch"|"OutstandingNetworkRequestXHR"|"AppBanner"|"Printing"|"WebDatabase"|"PictureInPicture"|"Portal"|"SpeechRecognizer"|"IdleManager"|"PaymentManager"|"SpeechSynthesis"|"KeyboardLock"|"WebOTPService"|"OutstandingNetworkRequestDirectSocket"|"InjectedJavascript"|"InjectedStyleSheet"|"Dummy"|"ContentSecurityHandler"|"ContentWebAuthenticationAPI"|"ContentFileChooser"|"ContentSerial"|"ContentFileSystemAccess"|"ContentMediaDevicesDispatcherHost"|"ContentWebBluetooth"|"ContentWebUSB"|"ContentMediaSession"|"ContentMediaSessionService"|"ContentScreenReader"|"EmbedderPopupBlockerTabHelper"|"EmbedderSafeBrowsingTriggeredPopupBlocker"|"EmbedderSafeBrowsingThreatDetails"|"EmbedderAppBannerManager"|"EmbedderDomDistillerViewerSource"|"EmbedderDomDistillerSelfDeletingRequestDelegate"|"EmbedderOomInterventionTabHelper"|"EmbedderOfflinePage"|"EmbedderChromePasswordManagerClientBindCredentialManager"|"EmbedderPermissionRequestManager"|"EmbedderModalDialog"|"EmbedderExtensions"|"EmbedderExtensionMessaging"|"EmbedderExtensionMessagingForOpenPort"|"EmbedderExtensionSentMessageToCachedFrame"; | ||||
|     /** | ||||
|      * Types of not restored reasons for back-forward cache. | ||||
|      */ | ||||
| @ -10679,6 +10677,10 @@ dependent on the reason: | ||||
|        */ | ||||
|       children: BackForwardCacheNotRestoredExplanationTree[]; | ||||
|     } | ||||
|     /** | ||||
|      * List of FinalStatus reasons for Prerender2. | ||||
|      */ | ||||
|     export type PrerenderFinalStatus = "Activated"; | ||||
|      | ||||
|     export type domContentEventFiredPayload = { | ||||
|       timestamp: Network.MonotonicTime; | ||||
| @ -10951,6 +10953,17 @@ when bfcache navigation fails. | ||||
|        */ | ||||
|       notRestoredExplanationsTree?: BackForwardCacheNotRestoredExplanationTree; | ||||
|     } | ||||
|     /** | ||||
|      * Fired when a prerender attempt is completed. | ||||
|      */ | ||||
|     export type prerenderAttemptCompletedPayload = { | ||||
|       /** | ||||
|        * The frame id of the frame initiating prerendering. | ||||
|        */ | ||||
|       initiatingFrameId: FrameId; | ||||
|       prerenderingUrl: string; | ||||
|       finalStatus: PrerenderFinalStatus; | ||||
|     } | ||||
|     export type loadEventFiredPayload = { | ||||
|       timestamp: Network.MonotonicTime; | ||||
|     } | ||||
| @ -11263,15 +11276,15 @@ information in the `cookies` field. | ||||
|     } | ||||
|     export type getLayoutMetricsReturnValue = { | ||||
|       /** | ||||
|        * Deprecated metrics relating to the layout viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssLayoutViewport` instead. | ||||
|        * Deprecated metrics relating to the layout viewport. Is in device pixels. Use `cssLayoutViewport` instead. | ||||
|        */ | ||||
|       layoutViewport: LayoutViewport; | ||||
|       /** | ||||
|        * Deprecated metrics relating to the visual viewport. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssVisualViewport` instead. | ||||
|        * Deprecated metrics relating to the visual viewport. Is in device pixels. Use `cssVisualViewport` instead. | ||||
|        */ | ||||
|       visualViewport: VisualViewport; | ||||
|       /** | ||||
|        * Deprecated size of scrollable area. Can be in DP or in CSS pixels depending on the `enable-use-zoom-for-dsf` flag. Use `cssContentSize` instead. | ||||
|        * Deprecated size of scrollable area. Is in DP. Use `cssContentSize` instead. | ||||
|        */ | ||||
|       contentSize: DOM.Rect; | ||||
|       /** | ||||
| @ -14517,19 +14530,37 @@ the error log level into the PlayerError type. | ||||
|       timestamp: Timestamp; | ||||
|       value: string; | ||||
|     } | ||||
|     /** | ||||
|      * Represents logged source line numbers reported in an error. | ||||
| NOTE: file and line are from chromium c++ implementation code, not js. | ||||
|      */ | ||||
|     export interface PlayerErrorSourceLocation { | ||||
|       file: string; | ||||
|       line: number; | ||||
|     } | ||||
|     /** | ||||
|      * Corresponds to kMediaError | ||||
|      */ | ||||
|     export interface PlayerError { | ||||
|       type: "pipeline_error"|"media_error"; | ||||
|       errorType: string; | ||||
|       /** | ||||
|        * When this switches to using media::Status instead of PipelineStatus | ||||
| we can remove "errorCode" and replace it with the fields from | ||||
| a Status instance. This also seems like a duplicate of the error | ||||
| level enum - there is a todo bug to have that level removed and | ||||
| use this instead. (crbug.com/1068454) | ||||
|        * Code is the numeric enum entry for a specific set of error codes, such | ||||
| as PipelineStatusCodes in media/base/pipeline_status.h | ||||
|        */ | ||||
|       errorCode: string; | ||||
|       code: number; | ||||
|       /** | ||||
|        * A trace of where this error was caused / where it passed through. | ||||
|        */ | ||||
|       stack: PlayerErrorSourceLocation[]; | ||||
|       /** | ||||
|        * Errors potentially have a root cause error, ie, a DecoderError might be | ||||
| caused by an WindowsError | ||||
|        */ | ||||
|       cause: PlayerError[]; | ||||
|       /** | ||||
|        * Extra data attached to an error, such as an HRESULT, Video Codec, etc. | ||||
|        */ | ||||
|       data: { [key: string]: string }; | ||||
|     } | ||||
|      | ||||
|     /** | ||||
| @ -16084,6 +16115,15 @@ other objects in their object group. | ||||
|      * Unique script identifier. | ||||
|      */ | ||||
|     export type ScriptId = string; | ||||
|     /** | ||||
|      * Represents the value serialiazed by the WebDriver BiDi specification | ||||
| https://w3c.github.io/webdriver-bidi.
 | ||||
|      */ | ||||
|     export interface WebDriverValue { | ||||
|       type: "undefined"|"null"|"string"|"number"|"boolean"|"bigint"|"regexp"|"date"|"symbol"|"array"|"object"|"function"|"map"|"set"|"weakmap"|"weakset"|"error"|"proxy"|"promise"|"typedarray"|"arraybuffer"|"node"|"window"; | ||||
|       value?: any; | ||||
|       objectId?: string; | ||||
|     } | ||||
|     /** | ||||
|      * Unique object identifier. | ||||
|      */ | ||||
| @ -16124,6 +16164,10 @@ property. | ||||
|        * String representation of the object. | ||||
|        */ | ||||
|       description?: string; | ||||
|       /** | ||||
|        * WebDriver BiDi representation of the value. | ||||
|        */ | ||||
|       webDriverValue?: WebDriverValue; | ||||
|       /** | ||||
|        * Unique object identifier (for non-primitive values). | ||||
|        */ | ||||
| @ -16643,6 +16687,10 @@ specified and objectId is, objectGroup will be inherited from object. | ||||
|        * Whether to throw an exception if side effect cannot be ruled out during evaluation. | ||||
|        */ | ||||
|       throwOnSideEffect?: boolean; | ||||
|       /** | ||||
|        * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
 | ||||
|        */ | ||||
|       generateWebDriverValue?: boolean; | ||||
|     } | ||||
|     export type callFunctionOnReturnValue = { | ||||
|       /** | ||||
| @ -16790,6 +16838,10 @@ boundaries). | ||||
| This is mutually exclusive with `contextId`. | ||||
|        */ | ||||
|       uniqueContextId?: string; | ||||
|       /** | ||||
|        * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
 | ||||
|        */ | ||||
|       generateWebDriverValue?: boolean; | ||||
|     } | ||||
|     export type evaluateReturnValue = { | ||||
|       /** | ||||
| @ -17201,6 +17253,7 @@ Error was thrown. | ||||
|     "Page.javascriptDialogOpening": Page.javascriptDialogOpeningPayload; | ||||
|     "Page.lifecycleEvent": Page.lifecycleEventPayload; | ||||
|     "Page.backForwardCacheNotUsed": Page.backForwardCacheNotUsedPayload; | ||||
|     "Page.prerenderAttemptCompleted": Page.prerenderAttemptCompletedPayload; | ||||
|     "Page.loadEventFired": Page.loadEventFiredPayload; | ||||
|     "Page.navigatedWithinDocument": Page.navigatedWithinDocumentPayload; | ||||
|     "Page.screencastFrame": Page.screencastFramePayload; | ||||
|  | ||||
| @ -40,7 +40,6 @@ const idToProtocol = new Map([ | ||||
|     ['IDS_CURSIVE_FONT_FAMILY', 'cursive'], | ||||
|     ['IDS_FANTASY_FONT_FAMILY', 'fantasy'], | ||||
|     ['IDS_FIXED_FONT_FAMILY', 'fixed'], | ||||
|     ['IDS_PICTOGRAPH_FONT_FAMILY', 'pictograph'] | ||||
| ]); | ||||
| 
 | ||||
| class ScriptFontFamilies { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Dmitry Gozman
						Dmitry Gozman