mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(chromium): roll to r1133 (#32391)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
3f09d10601
commit
d9016e506e
@ -1,6 +1,6 @@
|
|||||||
# 🎭 Playwright
|
# 🎭 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://aka.ms/playwright/discord)
|
[](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://aka.ms/playwright/discord)
|
||||||
|
|
||||||
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright)
|
## [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 |
|
| | Linux | macOS | Windows |
|
||||||
| :--- | :---: | :---: | :---: |
|
| :--- | :---: | :---: | :---: |
|
||||||
| Chromium <!-- GEN:chromium-version -->128.0.6613.36<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Chromium <!-- GEN:chromium-version -->129.0.6668.22<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| WebKit <!-- GEN:webkit-version -->18.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| WebKit <!-- GEN:webkit-version -->18.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| Firefox <!-- GEN:firefox-version -->129.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Firefox <!-- GEN:firefox-version -->129.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
|
|
||||||
|
@ -3,9 +3,9 @@
|
|||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"revision": "1131",
|
"revision": "1133",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"browserVersion": "128.0.6613.36"
|
"browserVersion": "129.0.6668.22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "chromium-tip-of-tree",
|
"name": "chromium-tip-of-tree",
|
||||||
|
@ -1131,17 +1131,21 @@ using Audits.issueAdded event.
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines commands and events for browser extensions. Available if the client
|
* Defines commands and events for browser extensions.
|
||||||
is connected using the --remote-debugging-pipe flag and
|
|
||||||
the --enable-unsafe-extension-debugging flag is set.
|
|
||||||
*/
|
*/
|
||||||
export module Extensions {
|
export module Extensions {
|
||||||
|
/**
|
||||||
|
* Storage areas.
|
||||||
|
*/
|
||||||
|
export type StorageArea = "session"|"local"|"sync"|"managed";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Installs an unpacked extension from the filesystem similar to
|
* Installs an unpacked extension from the filesystem similar to
|
||||||
--load-extension CLI flags. Returns extension ID once the extension
|
--load-extension CLI flags. Returns extension ID once the extension
|
||||||
has been installed.
|
has been installed. Available if the client is connected using the
|
||||||
|
--remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
|
||||||
|
flag is set.
|
||||||
*/
|
*/
|
||||||
export type loadUnpackedParameters = {
|
export type loadUnpackedParameters = {
|
||||||
/**
|
/**
|
||||||
@ -1155,6 +1159,81 @@ has been installed.
|
|||||||
*/
|
*/
|
||||||
id: string;
|
id: string;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
||||||
|
specified, these are used to filter the result.
|
||||||
|
*/
|
||||||
|
export type getStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to retrieve data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Keys to retrieve.
|
||||||
|
*/
|
||||||
|
keys?: string[];
|
||||||
|
}
|
||||||
|
export type getStorageItemsReturnValue = {
|
||||||
|
data: { [key: string]: string };
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Removes `keys` from extension storage in the given `storageArea`.
|
||||||
|
*/
|
||||||
|
export type removeStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to remove data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Keys to remove.
|
||||||
|
*/
|
||||||
|
keys: string[];
|
||||||
|
}
|
||||||
|
export type removeStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Clears extension storage in the given `storageArea`.
|
||||||
|
*/
|
||||||
|
export type clearStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to remove data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
}
|
||||||
|
export type clearStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Sets `values` in extension storage in the given `storageArea`. The provided `values`
|
||||||
|
will be merged with existing values in the storage area.
|
||||||
|
*/
|
||||||
|
export type setStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to set data in.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Values to set.
|
||||||
|
*/
|
||||||
|
values: { [key: string]: string };
|
||||||
|
}
|
||||||
|
export type setStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2532,16 +2611,6 @@ stylesheet rules) this rule came from.
|
|||||||
*/
|
*/
|
||||||
style: CSSStyle;
|
style: CSSStyle;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* CSS position-fallback rule representation.
|
|
||||||
*/
|
|
||||||
export interface CSSPositionFallbackRule {
|
|
||||||
name: Value;
|
|
||||||
/**
|
|
||||||
* List of keyframes.
|
|
||||||
*/
|
|
||||||
tryRules: CSSTryRule[];
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* CSS @position-try rule representation.
|
* CSS @position-try rule representation.
|
||||||
*/
|
*/
|
||||||
@ -2888,10 +2957,6 @@ attributes) for a DOM node identified by `nodeId`.
|
|||||||
* A list of CSS keyframed animations matching this node.
|
* A list of CSS keyframed animations matching this node.
|
||||||
*/
|
*/
|
||||||
cssKeyframesRules?: CSSKeyframesRule[];
|
cssKeyframesRules?: CSSKeyframesRule[];
|
||||||
/**
|
|
||||||
* A list of CSS position fallbacks matching this node.
|
|
||||||
*/
|
|
||||||
cssPositionFallbackRules?: CSSPositionFallbackRule[];
|
|
||||||
/**
|
/**
|
||||||
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
||||||
*/
|
*/
|
||||||
@ -3496,7 +3561,7 @@ front-end.
|
|||||||
/**
|
/**
|
||||||
* Pseudo element type.
|
* Pseudo element type.
|
||||||
*/
|
*/
|
||||||
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-old"|"view-transition-new";
|
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-next-button"|"scroll-prev-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-old"|"view-transition-new";
|
||||||
/**
|
/**
|
||||||
* Shadow root type.
|
* Shadow root type.
|
||||||
*/
|
*/
|
||||||
@ -3646,6 +3711,13 @@ The property is always undefined now.
|
|||||||
compatibilityMode?: CompatibilityMode;
|
compatibilityMode?: CompatibilityMode;
|
||||||
assignedSlot?: BackendNode;
|
assignedSlot?: BackendNode;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
||||||
|
*/
|
||||||
|
export interface DetachedElementInfo {
|
||||||
|
treeNode: Node;
|
||||||
|
retainedNodeIds: NodeId[];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* A structure holding an RGBA color.
|
* A structure holding an RGBA color.
|
||||||
*/
|
*/
|
||||||
@ -4693,6 +4765,17 @@ File wrapper.
|
|||||||
export type getFileInfoReturnValue = {
|
export type getFileInfoReturnValue = {
|
||||||
path: string;
|
path: string;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Returns list of detached nodes
|
||||||
|
*/
|
||||||
|
export type getDetachedDomNodesParameters = {
|
||||||
|
}
|
||||||
|
export type getDetachedDomNodesReturnValue = {
|
||||||
|
/**
|
||||||
|
* The list of detached nodes
|
||||||
|
*/
|
||||||
|
detachedNodes: DetachedElementInfo[];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
||||||
$x functions).
|
$x functions).
|
||||||
@ -11369,7 +11452,7 @@ as an ad.
|
|||||||
* All Permissions Policy features. This enum should match the one defined
|
* All Permissions Policy features. This enum should match the one defined
|
||||||
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
||||||
*/
|
*/
|
||||||
export type PermissionsPolicyFeature = "accelerometer"|"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-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"|"cross-origin-isolated"|"deferred-fetch"|"digital-credentials-get"|"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"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"local-fonts"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"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-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
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-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"|"cross-origin-isolated"|"deferred-fetch"|"digital-credentials-get"|"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"|"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"|"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-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
||||||
/**
|
/**
|
||||||
* Reason for a permissions policy feature to be disabled.
|
* Reason for a permissions policy feature to be disabled.
|
||||||
*/
|
*/
|
||||||
@ -11784,7 +11867,7 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|||||||
*/
|
*/
|
||||||
fixed?: number;
|
fixed?: number;
|
||||||
}
|
}
|
||||||
export type ClientNavigationReason = "formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"scriptInitiated"|"metaTagRefresh"|"pageBlockInterstitial"|"reload"|"anchorClick";
|
export type ClientNavigationReason = "anchorClick"|"formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"initialFrameNavigation"|"metaTagRefresh"|"other"|"pageBlockInterstitial"|"reload"|"scriptInitiated";
|
||||||
export type ClientNavigationDisposition = "currentTab"|"newTab"|"newWindow"|"download";
|
export type ClientNavigationDisposition = "currentTab"|"newTab"|"newWindow"|"download";
|
||||||
export interface InstallabilityErrorArgument {
|
export interface InstallabilityErrorArgument {
|
||||||
/**
|
/**
|
||||||
@ -12298,6 +12381,10 @@ when bfcache navigation fails.
|
|||||||
* Frame's new url.
|
* Frame's new url.
|
||||||
*/
|
*/
|
||||||
url: string;
|
url: string;
|
||||||
|
/**
|
||||||
|
* Navigation type
|
||||||
|
*/
|
||||||
|
navigationType: "fragment"|"historyApi"|"other";
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Compressed image data requested by the `startScreencast`.
|
* Compressed image data requested by the `startScreencast`.
|
||||||
@ -16922,7 +17009,7 @@ possible for multiple rule sets and links to trigger a single attempt.
|
|||||||
/**
|
/**
|
||||||
* List of FinalStatus reasons for Prerender2.
|
* List of FinalStatus reasons for Prerender2.
|
||||||
*/
|
*/
|
||||||
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";
|
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";
|
||||||
/**
|
/**
|
||||||
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
||||||
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
||||||
@ -17270,6 +17357,101 @@ supported yet.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This domain allows configuring virtual Bluetooth devices to test
|
||||||
|
the web-bluetooth API.
|
||||||
|
*/
|
||||||
|
export module BluetoothEmulation {
|
||||||
|
/**
|
||||||
|
* Indicates the various states of Central.
|
||||||
|
*/
|
||||||
|
export type CentralState = "absent"|"powered-off"|"powered-on";
|
||||||
|
/**
|
||||||
|
* Stores the manufacturer data
|
||||||
|
*/
|
||||||
|
export interface ManufacturerData {
|
||||||
|
/**
|
||||||
|
* Company identifier
|
||||||
|
https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml
|
||||||
|
https://usb.org/developers
|
||||||
|
*/
|
||||||
|
key: number;
|
||||||
|
/**
|
||||||
|
* Manufacturer-specific data
|
||||||
|
*/
|
||||||
|
data: binary;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Stores the byte data of the advertisement packet sent by a Bluetooth device.
|
||||||
|
*/
|
||||||
|
export interface ScanRecord {
|
||||||
|
name?: string;
|
||||||
|
uuids?: string[];
|
||||||
|
/**
|
||||||
|
* Stores the external appearance description of the device.
|
||||||
|
*/
|
||||||
|
appearance?: number;
|
||||||
|
/**
|
||||||
|
* Stores the transmission power of a broadcasting device.
|
||||||
|
*/
|
||||||
|
txPower?: number;
|
||||||
|
/**
|
||||||
|
* Key is the company identifier and the value is an array of bytes of
|
||||||
|
manufacturer specific data.
|
||||||
|
*/
|
||||||
|
manufacturerData?: ManufacturerData[];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Stores the advertisement packet information that is sent by a Bluetooth device.
|
||||||
|
*/
|
||||||
|
export interface ScanEntry {
|
||||||
|
deviceAddress: string;
|
||||||
|
rssi: number;
|
||||||
|
scanRecord: ScanRecord;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable the BluetoothEmulation domain.
|
||||||
|
*/
|
||||||
|
export type enableParameters = {
|
||||||
|
/**
|
||||||
|
* State of the simulated central.
|
||||||
|
*/
|
||||||
|
state: CentralState;
|
||||||
|
}
|
||||||
|
export type enableReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Disable the BluetoothEmulation domain.
|
||||||
|
*/
|
||||||
|
export type disableParameters = {
|
||||||
|
}
|
||||||
|
export type disableReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Simulates a peripheral with |address|, |name| and |knownServiceUuids|
|
||||||
|
that has already been connected to the system.
|
||||||
|
*/
|
||||||
|
export type simulatePreconnectedPeripheralParameters = {
|
||||||
|
address: string;
|
||||||
|
name: string;
|
||||||
|
manufacturerData: ManufacturerData[];
|
||||||
|
knownServiceUuids: string[];
|
||||||
|
}
|
||||||
|
export type simulatePreconnectedPeripheralReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Simulates an advertisement packet described in |entry| being received by
|
||||||
|
the central.
|
||||||
|
*/
|
||||||
|
export type simulateAdvertisementParameters = {
|
||||||
|
entry: ScanEntry;
|
||||||
|
}
|
||||||
|
export type simulateAdvertisementReturnValue = {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This domain is deprecated - use Runtime or Log instead.
|
* This domain is deprecated - use Runtime or Log instead.
|
||||||
*/
|
*/
|
||||||
@ -20122,6 +20304,10 @@ Error was thrown.
|
|||||||
"Audits.checkContrast": Audits.checkContrastParameters;
|
"Audits.checkContrast": Audits.checkContrastParameters;
|
||||||
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
||||||
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
||||||
|
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
||||||
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
||||||
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsParameters;
|
||||||
|
"Extensions.setStorageItems": Extensions.setStorageItemsParameters;
|
||||||
"Autofill.trigger": Autofill.triggerParameters;
|
"Autofill.trigger": Autofill.triggerParameters;
|
||||||
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
||||||
"Autofill.disable": Autofill.disableParameters;
|
"Autofill.disable": Autofill.disableParameters;
|
||||||
@ -20232,6 +20418,7 @@ Error was thrown.
|
|||||||
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledParameters;
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledParameters;
|
||||||
"DOM.getNodeStackTraces": DOM.getNodeStackTracesParameters;
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesParameters;
|
||||||
"DOM.getFileInfo": DOM.getFileInfoParameters;
|
"DOM.getFileInfo": DOM.getFileInfoParameters;
|
||||||
|
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesParameters;
|
||||||
"DOM.setInspectedNode": DOM.setInspectedNodeParameters;
|
"DOM.setInspectedNode": DOM.setInspectedNodeParameters;
|
||||||
"DOM.setNodeName": DOM.setNodeNameParameters;
|
"DOM.setNodeName": DOM.setNodeNameParameters;
|
||||||
"DOM.setNodeValue": DOM.setNodeValueParameters;
|
"DOM.setNodeValue": DOM.setNodeValueParameters;
|
||||||
@ -20616,6 +20803,10 @@ Error was thrown.
|
|||||||
"PWA.launchFilesInApp": PWA.launchFilesInAppParameters;
|
"PWA.launchFilesInApp": PWA.launchFilesInAppParameters;
|
||||||
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
||||||
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
||||||
|
"BluetoothEmulation.enable": BluetoothEmulation.enableParameters;
|
||||||
|
"BluetoothEmulation.disable": BluetoothEmulation.disableParameters;
|
||||||
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralParameters;
|
||||||
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementParameters;
|
||||||
"Console.clearMessages": Console.clearMessagesParameters;
|
"Console.clearMessages": Console.clearMessagesParameters;
|
||||||
"Console.disable": Console.disableParameters;
|
"Console.disable": Console.disableParameters;
|
||||||
"Console.enable": Console.enableParameters;
|
"Console.enable": Console.enableParameters;
|
||||||
@ -20722,6 +20913,10 @@ Error was thrown.
|
|||||||
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
||||||
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
||||||
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
||||||
|
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
||||||
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
||||||
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsReturnValue;
|
||||||
|
"Extensions.setStorageItems": Extensions.setStorageItemsReturnValue;
|
||||||
"Autofill.trigger": Autofill.triggerReturnValue;
|
"Autofill.trigger": Autofill.triggerReturnValue;
|
||||||
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
||||||
"Autofill.disable": Autofill.disableReturnValue;
|
"Autofill.disable": Autofill.disableReturnValue;
|
||||||
@ -20832,6 +21027,7 @@ Error was thrown.
|
|||||||
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledReturnValue;
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledReturnValue;
|
||||||
"DOM.getNodeStackTraces": DOM.getNodeStackTracesReturnValue;
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesReturnValue;
|
||||||
"DOM.getFileInfo": DOM.getFileInfoReturnValue;
|
"DOM.getFileInfo": DOM.getFileInfoReturnValue;
|
||||||
|
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesReturnValue;
|
||||||
"DOM.setInspectedNode": DOM.setInspectedNodeReturnValue;
|
"DOM.setInspectedNode": DOM.setInspectedNodeReturnValue;
|
||||||
"DOM.setNodeName": DOM.setNodeNameReturnValue;
|
"DOM.setNodeName": DOM.setNodeNameReturnValue;
|
||||||
"DOM.setNodeValue": DOM.setNodeValueReturnValue;
|
"DOM.setNodeValue": DOM.setNodeValueReturnValue;
|
||||||
@ -21216,6 +21412,10 @@ Error was thrown.
|
|||||||
"PWA.launchFilesInApp": PWA.launchFilesInAppReturnValue;
|
"PWA.launchFilesInApp": PWA.launchFilesInAppReturnValue;
|
||||||
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
||||||
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
||||||
|
"BluetoothEmulation.enable": BluetoothEmulation.enableReturnValue;
|
||||||
|
"BluetoothEmulation.disable": BluetoothEmulation.disableReturnValue;
|
||||||
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralReturnValue;
|
||||||
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementReturnValue;
|
||||||
"Console.clearMessages": Console.clearMessagesReturnValue;
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
||||||
"Console.disable": Console.disableReturnValue;
|
"Console.disable": Console.disableReturnValue;
|
||||||
"Console.enable": Console.enableReturnValue;
|
"Console.enable": Console.enableReturnValue;
|
||||||
|
@ -110,7 +110,7 @@
|
|||||||
"defaultBrowserType": "webkit"
|
"defaultBrowserType": "webkit"
|
||||||
},
|
},
|
||||||
"Galaxy S5": {
|
"Galaxy S5": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -121,7 +121,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy S5 landscape": {
|
"Galaxy S5 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -132,7 +132,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy S8": {
|
"Galaxy S8": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 740
|
"height": 740
|
||||||
@ -143,7 +143,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy S8 landscape": {
|
"Galaxy S8 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 740,
|
"width": 740,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -154,7 +154,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy S9+": {
|
"Galaxy S9+": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 320,
|
"width": 320,
|
||||||
"height": 658
|
"height": 658
|
||||||
@ -165,7 +165,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy S9+ landscape": {
|
"Galaxy S9+ landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G965U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 658,
|
"width": 658,
|
||||||
"height": 320
|
"height": 320
|
||||||
@ -176,7 +176,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy Tab S4": {
|
"Galaxy Tab S4": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 712,
|
"width": 712,
|
||||||
"height": 1138
|
"height": 1138
|
||||||
@ -187,7 +187,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Galaxy Tab S4 landscape": {
|
"Galaxy Tab S4 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 8.1.0; SM-T837A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 1138,
|
"width": 1138,
|
||||||
"height": 712
|
"height": 712
|
||||||
@ -1098,7 +1098,7 @@
|
|||||||
"defaultBrowserType": "webkit"
|
"defaultBrowserType": "webkit"
|
||||||
},
|
},
|
||||||
"LG Optimus L70": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 384,
|
"width": 384,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1109,7 +1109,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"LG Optimus L70 landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 384
|
"height": 384
|
||||||
@ -1120,7 +1120,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Microsoft Lumia 550": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36 Edge/14.14263",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -1131,7 +1131,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Microsoft Lumia 550 landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36 Edge/14.14263",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1142,7 +1142,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Microsoft Lumia 950": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36 Edge/14.14263",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1153,7 +1153,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Microsoft Lumia 950 landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36 Edge/14.14263",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -1164,7 +1164,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 10": {
|
"Nexus 10": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 800,
|
"width": 800,
|
||||||
"height": 1280
|
"height": 1280
|
||||||
@ -1175,7 +1175,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 10 landscape": {
|
"Nexus 10 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 10 Build/MOB31T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 1280,
|
"width": 1280,
|
||||||
"height": 800
|
"height": 800
|
||||||
@ -1186,7 +1186,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 4": {
|
"Nexus 4": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 384,
|
"width": 384,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1197,7 +1197,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 4 landscape": {
|
"Nexus 4 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 4.4.2; Nexus 4 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 384
|
"height": 384
|
||||||
@ -1208,7 +1208,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 5": {
|
"Nexus 5": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1219,7 +1219,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 5 landscape": {
|
"Nexus 5 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -1230,7 +1230,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 5X": {
|
"Nexus 5X": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 5X Build/OPR4.170623.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 412,
|
"width": 412,
|
||||||
"height": 732
|
"height": 732
|
||||||
@ -1241,7 +1241,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 5X landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 732,
|
"width": 732,
|
||||||
"height": 412
|
"height": 412
|
||||||
@ -1252,7 +1252,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 6": {
|
"Nexus 6": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 412,
|
"width": 412,
|
||||||
"height": 732
|
"height": 732
|
||||||
@ -1263,7 +1263,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 6 landscape": {
|
"Nexus 6 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6 Build/N6F26U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 732,
|
"width": 732,
|
||||||
"height": 412
|
"height": 412
|
||||||
@ -1274,7 +1274,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 6P": {
|
"Nexus 6P": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0.0; Nexus 6P Build/OPP3.170518.006) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 412,
|
"width": 412,
|
||||||
"height": 732
|
"height": 732
|
||||||
@ -1285,7 +1285,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 6P landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 732,
|
"width": 732,
|
||||||
"height": 412
|
"height": 412
|
||||||
@ -1296,7 +1296,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 7": {
|
"Nexus 7": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 600,
|
"width": 600,
|
||||||
"height": 960
|
"height": 960
|
||||||
@ -1307,7 +1307,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Nexus 7 landscape": {
|
"Nexus 7 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 7 Build/MOB30X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 960,
|
"width": 960,
|
||||||
"height": 600
|
"height": 600
|
||||||
@ -1362,7 +1362,7 @@
|
|||||||
"defaultBrowserType": "webkit"
|
"defaultBrowserType": "webkit"
|
||||||
},
|
},
|
||||||
"Pixel 2": {
|
"Pixel 2": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 411,
|
"width": 411,
|
||||||
"height": 731
|
"height": 731
|
||||||
@ -1373,7 +1373,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 2 landscape": {
|
"Pixel 2 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 731,
|
"width": 731,
|
||||||
"height": 411
|
"height": 411
|
||||||
@ -1384,7 +1384,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 2 XL": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 411,
|
"width": 411,
|
||||||
"height": 823
|
"height": 823
|
||||||
@ -1395,7 +1395,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 2 XL landscape": {
|
"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/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 823,
|
"width": 823,
|
||||||
"height": 411
|
"height": 411
|
||||||
@ -1406,7 +1406,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 3": {
|
"Pixel 3": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 393,
|
"width": 393,
|
||||||
"height": 786
|
"height": 786
|
||||||
@ -1417,7 +1417,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 3 landscape": {
|
"Pixel 3 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.181105.017.A1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 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/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 786,
|
"width": 786,
|
||||||
"height": 393
|
"height": 393
|
||||||
@ -1428,7 +1428,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 4": {
|
"Pixel 4": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 353,
|
"width": 353,
|
||||||
"height": 745
|
"height": 745
|
||||||
@ -1439,7 +1439,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 4 landscape": {
|
"Pixel 4 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 10; Pixel 4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 745,
|
"width": 745,
|
||||||
"height": 353
|
"height": 353
|
||||||
@ -1450,7 +1450,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 4a (5G)": {
|
"Pixel 4a (5G)": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 412,
|
"width": 412,
|
||||||
"height": 892
|
"height": 892
|
||||||
@ -1465,7 +1465,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 4a (5G) landscape": {
|
"Pixel 4a (5G) landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 4a (5G)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"height": 892,
|
"height": 892,
|
||||||
"width": 412
|
"width": 412
|
||||||
@ -1480,7 +1480,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 5": {
|
"Pixel 5": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 393,
|
"width": 393,
|
||||||
"height": 851
|
"height": 851
|
||||||
@ -1495,7 +1495,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 5 landscape": {
|
"Pixel 5 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 851,
|
"width": 851,
|
||||||
"height": 393
|
"height": 393
|
||||||
@ -1510,7 +1510,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 7": {
|
"Pixel 7": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 412,
|
"width": 412,
|
||||||
"height": 915
|
"height": 915
|
||||||
@ -1525,7 +1525,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Pixel 7 landscape": {
|
"Pixel 7 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 14; Pixel 7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 915,
|
"width": 915,
|
||||||
"height": 412
|
"height": 412
|
||||||
@ -1540,7 +1540,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Moto G4": {
|
"Moto G4": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 360,
|
"width": 360,
|
||||||
"height": 640
|
"height": 640
|
||||||
@ -1551,7 +1551,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Moto G4 landscape": {
|
"Moto G4 landscape": {
|
||||||
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Mobile Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Linux; Android 7.0; Moto G (4)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Mobile Safari/537.36",
|
||||||
"viewport": {
|
"viewport": {
|
||||||
"width": 640,
|
"width": 640,
|
||||||
"height": 360
|
"height": 360
|
||||||
@ -1562,7 +1562,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Desktop Chrome HiDPI": {
|
"Desktop Chrome HiDPI": {
|
||||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 1792,
|
"width": 1792,
|
||||||
"height": 1120
|
"height": 1120
|
||||||
@ -1577,7 +1577,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Desktop Edge HiDPI": {
|
"Desktop Edge HiDPI": {
|
||||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36 Edg/128.0.6613.36",
|
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36 Edg/129.0.6668.22",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 1792,
|
"width": 1792,
|
||||||
"height": 1120
|
"height": 1120
|
||||||
@ -1622,7 +1622,7 @@
|
|||||||
"defaultBrowserType": "webkit"
|
"defaultBrowserType": "webkit"
|
||||||
},
|
},
|
||||||
"Desktop Chrome": {
|
"Desktop Chrome": {
|
||||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36",
|
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 1920,
|
"width": 1920,
|
||||||
"height": 1080
|
"height": 1080
|
||||||
@ -1637,7 +1637,7 @@
|
|||||||
"defaultBrowserType": "chromium"
|
"defaultBrowserType": "chromium"
|
||||||
},
|
},
|
||||||
"Desktop Edge": {
|
"Desktop Edge": {
|
||||||
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6613.36 Safari/537.36 Edg/128.0.6613.36",
|
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.22 Safari/537.36 Edg/129.0.6668.22",
|
||||||
"screen": {
|
"screen": {
|
||||||
"width": 1920,
|
"width": 1920,
|
||||||
"height": 1080
|
"height": 1080
|
||||||
|
244
packages/playwright-core/types/protocol.d.ts
vendored
244
packages/playwright-core/types/protocol.d.ts
vendored
@ -1131,17 +1131,21 @@ using Audits.issueAdded event.
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines commands and events for browser extensions. Available if the client
|
* Defines commands and events for browser extensions.
|
||||||
is connected using the --remote-debugging-pipe flag and
|
|
||||||
the --enable-unsafe-extension-debugging flag is set.
|
|
||||||
*/
|
*/
|
||||||
export module Extensions {
|
export module Extensions {
|
||||||
|
/**
|
||||||
|
* Storage areas.
|
||||||
|
*/
|
||||||
|
export type StorageArea = "session"|"local"|"sync"|"managed";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Installs an unpacked extension from the filesystem similar to
|
* Installs an unpacked extension from the filesystem similar to
|
||||||
--load-extension CLI flags. Returns extension ID once the extension
|
--load-extension CLI flags. Returns extension ID once the extension
|
||||||
has been installed.
|
has been installed. Available if the client is connected using the
|
||||||
|
--remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
|
||||||
|
flag is set.
|
||||||
*/
|
*/
|
||||||
export type loadUnpackedParameters = {
|
export type loadUnpackedParameters = {
|
||||||
/**
|
/**
|
||||||
@ -1155,6 +1159,81 @@ has been installed.
|
|||||||
*/
|
*/
|
||||||
id: string;
|
id: string;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
||||||
|
specified, these are used to filter the result.
|
||||||
|
*/
|
||||||
|
export type getStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to retrieve data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Keys to retrieve.
|
||||||
|
*/
|
||||||
|
keys?: string[];
|
||||||
|
}
|
||||||
|
export type getStorageItemsReturnValue = {
|
||||||
|
data: { [key: string]: string };
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Removes `keys` from extension storage in the given `storageArea`.
|
||||||
|
*/
|
||||||
|
export type removeStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to remove data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Keys to remove.
|
||||||
|
*/
|
||||||
|
keys: string[];
|
||||||
|
}
|
||||||
|
export type removeStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Clears extension storage in the given `storageArea`.
|
||||||
|
*/
|
||||||
|
export type clearStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to remove data from.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
}
|
||||||
|
export type clearStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Sets `values` in extension storage in the given `storageArea`. The provided `values`
|
||||||
|
will be merged with existing values in the storage area.
|
||||||
|
*/
|
||||||
|
export type setStorageItemsParameters = {
|
||||||
|
/**
|
||||||
|
* ID of extension.
|
||||||
|
*/
|
||||||
|
id: string;
|
||||||
|
/**
|
||||||
|
* StorageArea to set data in.
|
||||||
|
*/
|
||||||
|
storageArea: StorageArea;
|
||||||
|
/**
|
||||||
|
* Values to set.
|
||||||
|
*/
|
||||||
|
values: { [key: string]: string };
|
||||||
|
}
|
||||||
|
export type setStorageItemsReturnValue = {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2532,16 +2611,6 @@ stylesheet rules) this rule came from.
|
|||||||
*/
|
*/
|
||||||
style: CSSStyle;
|
style: CSSStyle;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* CSS position-fallback rule representation.
|
|
||||||
*/
|
|
||||||
export interface CSSPositionFallbackRule {
|
|
||||||
name: Value;
|
|
||||||
/**
|
|
||||||
* List of keyframes.
|
|
||||||
*/
|
|
||||||
tryRules: CSSTryRule[];
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* CSS @position-try rule representation.
|
* CSS @position-try rule representation.
|
||||||
*/
|
*/
|
||||||
@ -2888,10 +2957,6 @@ attributes) for a DOM node identified by `nodeId`.
|
|||||||
* A list of CSS keyframed animations matching this node.
|
* A list of CSS keyframed animations matching this node.
|
||||||
*/
|
*/
|
||||||
cssKeyframesRules?: CSSKeyframesRule[];
|
cssKeyframesRules?: CSSKeyframesRule[];
|
||||||
/**
|
|
||||||
* A list of CSS position fallbacks matching this node.
|
|
||||||
*/
|
|
||||||
cssPositionFallbackRules?: CSSPositionFallbackRule[];
|
|
||||||
/**
|
/**
|
||||||
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
* A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
|
||||||
*/
|
*/
|
||||||
@ -3496,7 +3561,7 @@ front-end.
|
|||||||
/**
|
/**
|
||||||
* Pseudo element type.
|
* Pseudo element type.
|
||||||
*/
|
*/
|
||||||
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-old"|"view-transition-new";
|
export type PseudoType = "first-line"|"first-letter"|"before"|"after"|"marker"|"backdrop"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-next-button"|"scroll-prev-button"|"scrollbar"|"scrollbar-thumb"|"scrollbar-button"|"scrollbar-track"|"scrollbar-track-piece"|"scrollbar-corner"|"resizer"|"input-list-button"|"view-transition"|"view-transition-group"|"view-transition-image-pair"|"view-transition-old"|"view-transition-new";
|
||||||
/**
|
/**
|
||||||
* Shadow root type.
|
* Shadow root type.
|
||||||
*/
|
*/
|
||||||
@ -3646,6 +3711,13 @@ The property is always undefined now.
|
|||||||
compatibilityMode?: CompatibilityMode;
|
compatibilityMode?: CompatibilityMode;
|
||||||
assignedSlot?: BackendNode;
|
assignedSlot?: BackendNode;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* A structure to hold the top-level node of a detached tree and an array of its retained descendants.
|
||||||
|
*/
|
||||||
|
export interface DetachedElementInfo {
|
||||||
|
treeNode: Node;
|
||||||
|
retainedNodeIds: NodeId[];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* A structure holding an RGBA color.
|
* A structure holding an RGBA color.
|
||||||
*/
|
*/
|
||||||
@ -4693,6 +4765,17 @@ File wrapper.
|
|||||||
export type getFileInfoReturnValue = {
|
export type getFileInfoReturnValue = {
|
||||||
path: string;
|
path: string;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Returns list of detached nodes
|
||||||
|
*/
|
||||||
|
export type getDetachedDomNodesParameters = {
|
||||||
|
}
|
||||||
|
export type getDetachedDomNodesReturnValue = {
|
||||||
|
/**
|
||||||
|
* The list of detached nodes
|
||||||
|
*/
|
||||||
|
detachedNodes: DetachedElementInfo[];
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
* Enables console to refer to the node with given id via $x (see Command Line API for more details
|
||||||
$x functions).
|
$x functions).
|
||||||
@ -11369,7 +11452,7 @@ as an ad.
|
|||||||
* All Permissions Policy features. This enum should match the one defined
|
* All Permissions Policy features. This enum should match the one defined
|
||||||
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
||||||
*/
|
*/
|
||||||
export type PermissionsPolicyFeature = "accelerometer"|"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-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"|"cross-origin-isolated"|"deferred-fetch"|"digital-credentials-get"|"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"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"local-fonts"|"magnetometer"|"microphone"|"midi"|"otp-credentials"|"payment"|"picture-in-picture"|"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-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
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-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"|"cross-origin-isolated"|"deferred-fetch"|"digital-credentials-get"|"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"|"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"|"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-printing"|"web-share"|"window-management"|"xr-spatial-tracking";
|
||||||
/**
|
/**
|
||||||
* Reason for a permissions policy feature to be disabled.
|
* Reason for a permissions policy feature to be disabled.
|
||||||
*/
|
*/
|
||||||
@ -11784,7 +11867,7 @@ Example URLs: http://www.google.com/file.html -> "google.com"
|
|||||||
*/
|
*/
|
||||||
fixed?: number;
|
fixed?: number;
|
||||||
}
|
}
|
||||||
export type ClientNavigationReason = "formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"scriptInitiated"|"metaTagRefresh"|"pageBlockInterstitial"|"reload"|"anchorClick";
|
export type ClientNavigationReason = "anchorClick"|"formSubmissionGet"|"formSubmissionPost"|"httpHeaderRefresh"|"initialFrameNavigation"|"metaTagRefresh"|"other"|"pageBlockInterstitial"|"reload"|"scriptInitiated";
|
||||||
export type ClientNavigationDisposition = "currentTab"|"newTab"|"newWindow"|"download";
|
export type ClientNavigationDisposition = "currentTab"|"newTab"|"newWindow"|"download";
|
||||||
export interface InstallabilityErrorArgument {
|
export interface InstallabilityErrorArgument {
|
||||||
/**
|
/**
|
||||||
@ -12298,6 +12381,10 @@ when bfcache navigation fails.
|
|||||||
* Frame's new url.
|
* Frame's new url.
|
||||||
*/
|
*/
|
||||||
url: string;
|
url: string;
|
||||||
|
/**
|
||||||
|
* Navigation type
|
||||||
|
*/
|
||||||
|
navigationType: "fragment"|"historyApi"|"other";
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Compressed image data requested by the `startScreencast`.
|
* Compressed image data requested by the `startScreencast`.
|
||||||
@ -16922,7 +17009,7 @@ possible for multiple rule sets and links to trigger a single attempt.
|
|||||||
/**
|
/**
|
||||||
* List of FinalStatus reasons for Prerender2.
|
* List of FinalStatus reasons for Prerender2.
|
||||||
*/
|
*/
|
||||||
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";
|
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";
|
||||||
/**
|
/**
|
||||||
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|
||||||
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
|
||||||
@ -17270,6 +17357,101 @@ supported yet.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This domain allows configuring virtual Bluetooth devices to test
|
||||||
|
the web-bluetooth API.
|
||||||
|
*/
|
||||||
|
export module BluetoothEmulation {
|
||||||
|
/**
|
||||||
|
* Indicates the various states of Central.
|
||||||
|
*/
|
||||||
|
export type CentralState = "absent"|"powered-off"|"powered-on";
|
||||||
|
/**
|
||||||
|
* Stores the manufacturer data
|
||||||
|
*/
|
||||||
|
export interface ManufacturerData {
|
||||||
|
/**
|
||||||
|
* Company identifier
|
||||||
|
https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml
|
||||||
|
https://usb.org/developers
|
||||||
|
*/
|
||||||
|
key: number;
|
||||||
|
/**
|
||||||
|
* Manufacturer-specific data
|
||||||
|
*/
|
||||||
|
data: binary;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Stores the byte data of the advertisement packet sent by a Bluetooth device.
|
||||||
|
*/
|
||||||
|
export interface ScanRecord {
|
||||||
|
name?: string;
|
||||||
|
uuids?: string[];
|
||||||
|
/**
|
||||||
|
* Stores the external appearance description of the device.
|
||||||
|
*/
|
||||||
|
appearance?: number;
|
||||||
|
/**
|
||||||
|
* Stores the transmission power of a broadcasting device.
|
||||||
|
*/
|
||||||
|
txPower?: number;
|
||||||
|
/**
|
||||||
|
* Key is the company identifier and the value is an array of bytes of
|
||||||
|
manufacturer specific data.
|
||||||
|
*/
|
||||||
|
manufacturerData?: ManufacturerData[];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Stores the advertisement packet information that is sent by a Bluetooth device.
|
||||||
|
*/
|
||||||
|
export interface ScanEntry {
|
||||||
|
deviceAddress: string;
|
||||||
|
rssi: number;
|
||||||
|
scanRecord: ScanRecord;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable the BluetoothEmulation domain.
|
||||||
|
*/
|
||||||
|
export type enableParameters = {
|
||||||
|
/**
|
||||||
|
* State of the simulated central.
|
||||||
|
*/
|
||||||
|
state: CentralState;
|
||||||
|
}
|
||||||
|
export type enableReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Disable the BluetoothEmulation domain.
|
||||||
|
*/
|
||||||
|
export type disableParameters = {
|
||||||
|
}
|
||||||
|
export type disableReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Simulates a peripheral with |address|, |name| and |knownServiceUuids|
|
||||||
|
that has already been connected to the system.
|
||||||
|
*/
|
||||||
|
export type simulatePreconnectedPeripheralParameters = {
|
||||||
|
address: string;
|
||||||
|
name: string;
|
||||||
|
manufacturerData: ManufacturerData[];
|
||||||
|
knownServiceUuids: string[];
|
||||||
|
}
|
||||||
|
export type simulatePreconnectedPeripheralReturnValue = {
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Simulates an advertisement packet described in |entry| being received by
|
||||||
|
the central.
|
||||||
|
*/
|
||||||
|
export type simulateAdvertisementParameters = {
|
||||||
|
entry: ScanEntry;
|
||||||
|
}
|
||||||
|
export type simulateAdvertisementReturnValue = {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This domain is deprecated - use Runtime or Log instead.
|
* This domain is deprecated - use Runtime or Log instead.
|
||||||
*/
|
*/
|
||||||
@ -20122,6 +20304,10 @@ Error was thrown.
|
|||||||
"Audits.checkContrast": Audits.checkContrastParameters;
|
"Audits.checkContrast": Audits.checkContrastParameters;
|
||||||
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesParameters;
|
||||||
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
"Extensions.loadUnpacked": Extensions.loadUnpackedParameters;
|
||||||
|
"Extensions.getStorageItems": Extensions.getStorageItemsParameters;
|
||||||
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsParameters;
|
||||||
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsParameters;
|
||||||
|
"Extensions.setStorageItems": Extensions.setStorageItemsParameters;
|
||||||
"Autofill.trigger": Autofill.triggerParameters;
|
"Autofill.trigger": Autofill.triggerParameters;
|
||||||
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
"Autofill.setAddresses": Autofill.setAddressesParameters;
|
||||||
"Autofill.disable": Autofill.disableParameters;
|
"Autofill.disable": Autofill.disableParameters;
|
||||||
@ -20232,6 +20418,7 @@ Error was thrown.
|
|||||||
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledParameters;
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledParameters;
|
||||||
"DOM.getNodeStackTraces": DOM.getNodeStackTracesParameters;
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesParameters;
|
||||||
"DOM.getFileInfo": DOM.getFileInfoParameters;
|
"DOM.getFileInfo": DOM.getFileInfoParameters;
|
||||||
|
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesParameters;
|
||||||
"DOM.setInspectedNode": DOM.setInspectedNodeParameters;
|
"DOM.setInspectedNode": DOM.setInspectedNodeParameters;
|
||||||
"DOM.setNodeName": DOM.setNodeNameParameters;
|
"DOM.setNodeName": DOM.setNodeNameParameters;
|
||||||
"DOM.setNodeValue": DOM.setNodeValueParameters;
|
"DOM.setNodeValue": DOM.setNodeValueParameters;
|
||||||
@ -20616,6 +20803,10 @@ Error was thrown.
|
|||||||
"PWA.launchFilesInApp": PWA.launchFilesInAppParameters;
|
"PWA.launchFilesInApp": PWA.launchFilesInAppParameters;
|
||||||
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppParameters;
|
||||||
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsParameters;
|
||||||
|
"BluetoothEmulation.enable": BluetoothEmulation.enableParameters;
|
||||||
|
"BluetoothEmulation.disable": BluetoothEmulation.disableParameters;
|
||||||
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralParameters;
|
||||||
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementParameters;
|
||||||
"Console.clearMessages": Console.clearMessagesParameters;
|
"Console.clearMessages": Console.clearMessagesParameters;
|
||||||
"Console.disable": Console.disableParameters;
|
"Console.disable": Console.disableParameters;
|
||||||
"Console.enable": Console.enableParameters;
|
"Console.enable": Console.enableParameters;
|
||||||
@ -20722,6 +20913,10 @@ Error was thrown.
|
|||||||
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
"Audits.checkContrast": Audits.checkContrastReturnValue;
|
||||||
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
"Audits.checkFormsIssues": Audits.checkFormsIssuesReturnValue;
|
||||||
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
"Extensions.loadUnpacked": Extensions.loadUnpackedReturnValue;
|
||||||
|
"Extensions.getStorageItems": Extensions.getStorageItemsReturnValue;
|
||||||
|
"Extensions.removeStorageItems": Extensions.removeStorageItemsReturnValue;
|
||||||
|
"Extensions.clearStorageItems": Extensions.clearStorageItemsReturnValue;
|
||||||
|
"Extensions.setStorageItems": Extensions.setStorageItemsReturnValue;
|
||||||
"Autofill.trigger": Autofill.triggerReturnValue;
|
"Autofill.trigger": Autofill.triggerReturnValue;
|
||||||
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
"Autofill.setAddresses": Autofill.setAddressesReturnValue;
|
||||||
"Autofill.disable": Autofill.disableReturnValue;
|
"Autofill.disable": Autofill.disableReturnValue;
|
||||||
@ -20832,6 +21027,7 @@ Error was thrown.
|
|||||||
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledReturnValue;
|
"DOM.setNodeStackTracesEnabled": DOM.setNodeStackTracesEnabledReturnValue;
|
||||||
"DOM.getNodeStackTraces": DOM.getNodeStackTracesReturnValue;
|
"DOM.getNodeStackTraces": DOM.getNodeStackTracesReturnValue;
|
||||||
"DOM.getFileInfo": DOM.getFileInfoReturnValue;
|
"DOM.getFileInfo": DOM.getFileInfoReturnValue;
|
||||||
|
"DOM.getDetachedDomNodes": DOM.getDetachedDomNodesReturnValue;
|
||||||
"DOM.setInspectedNode": DOM.setInspectedNodeReturnValue;
|
"DOM.setInspectedNode": DOM.setInspectedNodeReturnValue;
|
||||||
"DOM.setNodeName": DOM.setNodeNameReturnValue;
|
"DOM.setNodeName": DOM.setNodeNameReturnValue;
|
||||||
"DOM.setNodeValue": DOM.setNodeValueReturnValue;
|
"DOM.setNodeValue": DOM.setNodeValueReturnValue;
|
||||||
@ -21216,6 +21412,10 @@ Error was thrown.
|
|||||||
"PWA.launchFilesInApp": PWA.launchFilesInAppReturnValue;
|
"PWA.launchFilesInApp": PWA.launchFilesInAppReturnValue;
|
||||||
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
"PWA.openCurrentPageInApp": PWA.openCurrentPageInAppReturnValue;
|
||||||
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
"PWA.changeAppUserSettings": PWA.changeAppUserSettingsReturnValue;
|
||||||
|
"BluetoothEmulation.enable": BluetoothEmulation.enableReturnValue;
|
||||||
|
"BluetoothEmulation.disable": BluetoothEmulation.disableReturnValue;
|
||||||
|
"BluetoothEmulation.simulatePreconnectedPeripheral": BluetoothEmulation.simulatePreconnectedPeripheralReturnValue;
|
||||||
|
"BluetoothEmulation.simulateAdvertisement": BluetoothEmulation.simulateAdvertisementReturnValue;
|
||||||
"Console.clearMessages": Console.clearMessagesReturnValue;
|
"Console.clearMessages": Console.clearMessagesReturnValue;
|
||||||
"Console.disable": Console.disableReturnValue;
|
"Console.disable": Console.disableReturnValue;
|
||||||
"Console.enable": Console.enableReturnValue;
|
"Console.enable": Console.enableReturnValue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user