devtools-protocol 0.0.1152884 → 0.0.1155343
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/browser_protocol.json +89 -4
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +47 -2
- package/types/protocol.d.ts +49 -4
@@ -1631,6 +1631,32 @@
|
|
1631
1631
|
"ThirdPartyCookiesBlocked"
|
1632
1632
|
]
|
1633
1633
|
},
|
1634
|
+
{
|
1635
|
+
"id": "FederatedAuthUserInfoRequestIssueDetails",
|
1636
|
+
"type": "object",
|
1637
|
+
"properties": [
|
1638
|
+
{
|
1639
|
+
"name": "federatedAuthUserInfoRequestIssueReason",
|
1640
|
+
"$ref": "FederatedAuthUserInfoRequestIssueReason"
|
1641
|
+
}
|
1642
|
+
]
|
1643
|
+
},
|
1644
|
+
{
|
1645
|
+
"id": "FederatedAuthUserInfoRequestIssueReason",
|
1646
|
+
"description": "Represents the failure reason when a getUserInfo() call fails.\nShould be updated alongside FederatedAuthUserInfoRequestResult in\nthird_party/blink/public/mojom/devtools/inspector_issue.mojom.",
|
1647
|
+
"type": "string",
|
1648
|
+
"enum": [
|
1649
|
+
"NotSameOrigin",
|
1650
|
+
"NotIframe",
|
1651
|
+
"NotPotentiallyTrustworthy",
|
1652
|
+
"NoApiPermission",
|
1653
|
+
"NotSignedInWithIdp",
|
1654
|
+
"NoAccountSharingPermission",
|
1655
|
+
"InvalidConfigOrWellKnown",
|
1656
|
+
"InvalidAccountsResponse",
|
1657
|
+
"NoReturningUserFromFetchedAccounts"
|
1658
|
+
]
|
1659
|
+
},
|
1634
1660
|
{
|
1635
1661
|
"id": "ClientHintIssueDetails",
|
1636
1662
|
"description": "This issue tracks client hints related issues. It's used to deprecate old\nfeatures, encourage the use of new ones, and provide general guidance.",
|
@@ -1646,6 +1672,53 @@
|
|
1646
1672
|
}
|
1647
1673
|
]
|
1648
1674
|
},
|
1675
|
+
{
|
1676
|
+
"id": "FailedRequestInfo",
|
1677
|
+
"type": "object",
|
1678
|
+
"properties": [
|
1679
|
+
{
|
1680
|
+
"name": "url",
|
1681
|
+
"description": "The URL that failed to load.",
|
1682
|
+
"type": "string"
|
1683
|
+
},
|
1684
|
+
{
|
1685
|
+
"name": "failureMessage",
|
1686
|
+
"description": "The failure message for the failed request.",
|
1687
|
+
"type": "string"
|
1688
|
+
}
|
1689
|
+
]
|
1690
|
+
},
|
1691
|
+
{
|
1692
|
+
"id": "StyleSheetLoadingIssueReason",
|
1693
|
+
"type": "string",
|
1694
|
+
"enum": [
|
1695
|
+
"LateImportRule",
|
1696
|
+
"RequestFailed"
|
1697
|
+
]
|
1698
|
+
},
|
1699
|
+
{
|
1700
|
+
"id": "StylesheetLoadingIssueDetails",
|
1701
|
+
"description": "This issue warns when a referenced stylesheet couldn't be loaded.",
|
1702
|
+
"type": "object",
|
1703
|
+
"properties": [
|
1704
|
+
{
|
1705
|
+
"name": "sourceCodeLocation",
|
1706
|
+
"description": "Source code position that referenced the failing stylesheet.",
|
1707
|
+
"$ref": "SourceCodeLocation"
|
1708
|
+
},
|
1709
|
+
{
|
1710
|
+
"name": "styleSheetLoadingIssueReason",
|
1711
|
+
"description": "Reason why the stylesheet couldn't be loaded.",
|
1712
|
+
"$ref": "StyleSheetLoadingIssueReason"
|
1713
|
+
},
|
1714
|
+
{
|
1715
|
+
"name": "failedRequestInfo",
|
1716
|
+
"description": "Contains additional info when the failure was due to a request.",
|
1717
|
+
"optional": true,
|
1718
|
+
"$ref": "FailedRequestInfo"
|
1719
|
+
}
|
1720
|
+
]
|
1721
|
+
},
|
1649
1722
|
{
|
1650
1723
|
"id": "InspectorIssueCode",
|
1651
1724
|
"description": "A unique identifier for the type of issue. Each type may use one of the\noptional fields in InspectorIssueDetails to convey more specific\ninformation about the kind of issue.",
|
@@ -1666,7 +1739,9 @@
|
|
1666
1739
|
"DeprecationIssue",
|
1667
1740
|
"ClientHintIssue",
|
1668
1741
|
"FederatedAuthRequestIssue",
|
1669
|
-
"BounceTrackingIssue"
|
1742
|
+
"BounceTrackingIssue",
|
1743
|
+
"StylesheetLoadingIssue",
|
1744
|
+
"FederatedAuthUserInfoRequestIssue"
|
1670
1745
|
]
|
1671
1746
|
},
|
1672
1747
|
{
|
@@ -1753,6 +1828,16 @@
|
|
1753
1828
|
"name": "bounceTrackingIssueDetails",
|
1754
1829
|
"optional": true,
|
1755
1830
|
"$ref": "BounceTrackingIssueDetails"
|
1831
|
+
},
|
1832
|
+
{
|
1833
|
+
"name": "stylesheetLoadingIssueDetails",
|
1834
|
+
"optional": true,
|
1835
|
+
"$ref": "StylesheetLoadingIssueDetails"
|
1836
|
+
},
|
1837
|
+
{
|
1838
|
+
"name": "federatedAuthUserInfoRequestIssueDetails",
|
1839
|
+
"optional": true,
|
1840
|
+
"$ref": "FederatedAuthUserInfoRequestIssueDetails"
|
1756
1841
|
}
|
1757
1842
|
]
|
1758
1843
|
},
|
@@ -14172,6 +14257,7 @@
|
|
14172
14257
|
"enum": [
|
14173
14258
|
"Ok",
|
14174
14259
|
"InvalidArgument",
|
14260
|
+
"MissingIssuerKeys",
|
14175
14261
|
"FailedPrecondition",
|
14176
14262
|
"ResourceExhausted",
|
14177
14263
|
"AlreadyExists",
|
@@ -15572,11 +15658,9 @@
|
|
15572
15658
|
"ch-ua-platform",
|
15573
15659
|
"ch-ua-model",
|
15574
15660
|
"ch-ua-mobile",
|
15575
|
-
"ch-ua-full",
|
15576
15661
|
"ch-ua-full-version",
|
15577
15662
|
"ch-ua-full-version-list",
|
15578
15663
|
"ch-ua-platform-version",
|
15579
|
-
"ch-ua-reduced",
|
15580
15664
|
"ch-ua-wow64",
|
15581
15665
|
"ch-viewport-height",
|
15582
15666
|
"ch-viewport-width",
|
@@ -23378,7 +23462,8 @@
|
|
23378
23462
|
"SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation",
|
23379
23463
|
"MemoryPressureOnTrigger",
|
23380
23464
|
"MemoryPressureAfterTriggered",
|
23381
|
-
"PrerenderingDisabledByDevTools"
|
23465
|
+
"PrerenderingDisabledByDevTools",
|
23466
|
+
"ResourceLoadBlockedByClient"
|
23382
23467
|
]
|
23383
23468
|
},
|
23384
23469
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -820,6 +820,25 @@ experimental domain Audits
|
|
820
820
|
SilentMediationFailure
|
821
821
|
ThirdPartyCookiesBlocked
|
822
822
|
|
823
|
+
type FederatedAuthUserInfoRequestIssueDetails extends object
|
824
|
+
properties
|
825
|
+
FederatedAuthUserInfoRequestIssueReason federatedAuthUserInfoRequestIssueReason
|
826
|
+
|
827
|
+
# Represents the failure reason when a getUserInfo() call fails.
|
828
|
+
# Should be updated alongside FederatedAuthUserInfoRequestResult in
|
829
|
+
# third_party/blink/public/mojom/devtools/inspector_issue.mojom.
|
830
|
+
type FederatedAuthUserInfoRequestIssueReason extends string
|
831
|
+
enum
|
832
|
+
NotSameOrigin
|
833
|
+
NotIframe
|
834
|
+
NotPotentiallyTrustworthy
|
835
|
+
NoApiPermission
|
836
|
+
NotSignedInWithIdp
|
837
|
+
NoAccountSharingPermission
|
838
|
+
InvalidConfigOrWellKnown
|
839
|
+
InvalidAccountsResponse
|
840
|
+
NoReturningUserFromFetchedAccounts
|
841
|
+
|
823
842
|
# This issue tracks client hints related issues. It's used to deprecate old
|
824
843
|
# features, encourage the use of new ones, and provide general guidance.
|
825
844
|
type ClientHintIssueDetails extends object
|
@@ -827,6 +846,28 @@ experimental domain Audits
|
|
827
846
|
SourceCodeLocation sourceCodeLocation
|
828
847
|
ClientHintIssueReason clientHintIssueReason
|
829
848
|
|
849
|
+
type FailedRequestInfo extends object
|
850
|
+
properties
|
851
|
+
# The URL that failed to load.
|
852
|
+
string url
|
853
|
+
# The failure message for the failed request.
|
854
|
+
string failureMessage
|
855
|
+
|
856
|
+
type StyleSheetLoadingIssueReason extends string
|
857
|
+
enum
|
858
|
+
LateImportRule
|
859
|
+
RequestFailed
|
860
|
+
|
861
|
+
# This issue warns when a referenced stylesheet couldn't be loaded.
|
862
|
+
type StylesheetLoadingIssueDetails extends object
|
863
|
+
properties
|
864
|
+
# Source code position that referenced the failing stylesheet.
|
865
|
+
SourceCodeLocation sourceCodeLocation
|
866
|
+
# Reason why the stylesheet couldn't be loaded.
|
867
|
+
StyleSheetLoadingIssueReason styleSheetLoadingIssueReason
|
868
|
+
# Contains additional info when the failure was due to a request.
|
869
|
+
optional FailedRequestInfo failedRequestInfo
|
870
|
+
|
830
871
|
# A unique identifier for the type of issue. Each type may use one of the
|
831
872
|
# optional fields in InspectorIssueDetails to convey more specific
|
832
873
|
# information about the kind of issue.
|
@@ -848,6 +889,8 @@ experimental domain Audits
|
|
848
889
|
ClientHintIssue
|
849
890
|
FederatedAuthRequestIssue
|
850
891
|
BounceTrackingIssue
|
892
|
+
StylesheetLoadingIssue
|
893
|
+
FederatedAuthUserInfoRequestIssue
|
851
894
|
|
852
895
|
# This struct holds a list of optional fields with additional information
|
853
896
|
# specific to the kind of issue. When adding a new issue code, please also
|
@@ -870,6 +913,8 @@ experimental domain Audits
|
|
870
913
|
optional ClientHintIssueDetails clientHintIssueDetails
|
871
914
|
optional FederatedAuthRequestIssueDetails federatedAuthRequestIssueDetails
|
872
915
|
optional BounceTrackingIssueDetails bounceTrackingIssueDetails
|
916
|
+
optional StylesheetLoadingIssueDetails stylesheetLoadingIssueDetails
|
917
|
+
optional FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
|
873
918
|
|
874
919
|
# A unique id for a DevTools inspector issue. Allows other entities (e.g.
|
875
920
|
# exceptions, CDP message, console messages, etc.) to reference an issue.
|
@@ -6469,6 +6514,7 @@ domain Network
|
|
6469
6514
|
enum status
|
6470
6515
|
Ok
|
6471
6516
|
InvalidArgument
|
6517
|
+
MissingIssuerKeys
|
6472
6518
|
FailedPrecondition
|
6473
6519
|
ResourceExhausted
|
6474
6520
|
AlreadyExists
|
@@ -7255,11 +7301,9 @@ domain Page
|
|
7255
7301
|
ch-ua-platform
|
7256
7302
|
ch-ua-model
|
7257
7303
|
ch-ua-mobile
|
7258
|
-
ch-ua-full
|
7259
7304
|
ch-ua-full-version
|
7260
7305
|
ch-ua-full-version-list
|
7261
7306
|
ch-ua-platform-version
|
7262
|
-
ch-ua-reduced
|
7263
7307
|
ch-ua-wow64
|
7264
7308
|
ch-viewport-height
|
7265
7309
|
ch-viewport-width
|
@@ -11063,6 +11107,7 @@ experimental domain Preload
|
|
11063
11107
|
MemoryPressureOnTrigger
|
11064
11108
|
MemoryPressureAfterTriggered
|
11065
11109
|
PrerenderingDisabledByDevTools
|
11110
|
+
ResourceLoadBlockedByClient
|
11066
11111
|
|
11067
11112
|
# Fired when a prerender attempt is completed.
|
11068
11113
|
event prerenderAttemptCompleted
|
package/types/protocol.d.ts
CHANGED
@@ -3522,6 +3522,17 @@ export namespace Protocol {
|
|
3522
3522
|
*/
|
3523
3523
|
export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'WellKnownListEmpty' | 'WellKnownInvalidContentType' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ConfigInvalidContentType' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'ClientMetadataInvalidContentType' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'AccountsListEmpty' | 'AccountsInvalidContentType' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'IdTokenInvalidContentType' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible' | 'SilentMediationFailure' | 'ThirdPartyCookiesBlocked');
|
3524
3524
|
|
3525
|
+
export interface FederatedAuthUserInfoRequestIssueDetails {
|
3526
|
+
federatedAuthUserInfoRequestIssueReason: FederatedAuthUserInfoRequestIssueReason;
|
3527
|
+
}
|
3528
|
+
|
3529
|
+
/**
|
3530
|
+
* Represents the failure reason when a getUserInfo() call fails.
|
3531
|
+
* Should be updated alongside FederatedAuthUserInfoRequestResult in
|
3532
|
+
* third_party/blink/public/mojom/devtools/inspector_issue.mojom.
|
3533
|
+
*/
|
3534
|
+
export type FederatedAuthUserInfoRequestIssueReason = ('NotSameOrigin' | 'NotIframe' | 'NotPotentiallyTrustworthy' | 'NoApiPermission' | 'NotSignedInWithIdp' | 'NoAccountSharingPermission' | 'InvalidConfigOrWellKnown' | 'InvalidAccountsResponse' | 'NoReturningUserFromFetchedAccounts');
|
3535
|
+
|
3525
3536
|
/**
|
3526
3537
|
* This issue tracks client hints related issues. It's used to deprecate old
|
3527
3538
|
* features, encourage the use of new ones, and provide general guidance.
|
@@ -3531,12 +3542,43 @@ export namespace Protocol {
|
|
3531
3542
|
clientHintIssueReason: ClientHintIssueReason;
|
3532
3543
|
}
|
3533
3544
|
|
3545
|
+
export interface FailedRequestInfo {
|
3546
|
+
/**
|
3547
|
+
* The URL that failed to load.
|
3548
|
+
*/
|
3549
|
+
url: string;
|
3550
|
+
/**
|
3551
|
+
* The failure message for the failed request.
|
3552
|
+
*/
|
3553
|
+
failureMessage: string;
|
3554
|
+
}
|
3555
|
+
|
3556
|
+
export type StyleSheetLoadingIssueReason = ('LateImportRule' | 'RequestFailed');
|
3557
|
+
|
3558
|
+
/**
|
3559
|
+
* This issue warns when a referenced stylesheet couldn't be loaded.
|
3560
|
+
*/
|
3561
|
+
export interface StylesheetLoadingIssueDetails {
|
3562
|
+
/**
|
3563
|
+
* Source code position that referenced the failing stylesheet.
|
3564
|
+
*/
|
3565
|
+
sourceCodeLocation: SourceCodeLocation;
|
3566
|
+
/**
|
3567
|
+
* Reason why the stylesheet couldn't be loaded.
|
3568
|
+
*/
|
3569
|
+
styleSheetLoadingIssueReason: StyleSheetLoadingIssueReason;
|
3570
|
+
/**
|
3571
|
+
* Contains additional info when the failure was due to a request.
|
3572
|
+
*/
|
3573
|
+
failedRequestInfo?: FailedRequestInfo;
|
3574
|
+
}
|
3575
|
+
|
3534
3576
|
/**
|
3535
3577
|
* A unique identifier for the type of issue. Each type may use one of the
|
3536
3578
|
* optional fields in InspectorIssueDetails to convey more specific
|
3537
3579
|
* information about the kind of issue.
|
3538
3580
|
*/
|
3539
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue');
|
3581
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue');
|
3540
3582
|
|
3541
3583
|
/**
|
3542
3584
|
* This struct holds a list of optional fields with additional information
|
@@ -3560,6 +3602,8 @@ export namespace Protocol {
|
|
3560
3602
|
clientHintIssueDetails?: ClientHintIssueDetails;
|
3561
3603
|
federatedAuthRequestIssueDetails?: FederatedAuthRequestIssueDetails;
|
3562
3604
|
bounceTrackingIssueDetails?: BounceTrackingIssueDetails;
|
3605
|
+
stylesheetLoadingIssueDetails?: StylesheetLoadingIssueDetails;
|
3606
|
+
federatedAuthUserInfoRequestIssueDetails?: FederatedAuthUserInfoRequestIssueDetails;
|
3563
3607
|
}
|
3564
3608
|
|
3565
3609
|
/**
|
@@ -11660,6 +11704,7 @@ export namespace Protocol {
|
|
11660
11704
|
export const enum TrustTokenOperationDoneEventStatus {
|
11661
11705
|
Ok = 'Ok',
|
11662
11706
|
InvalidArgument = 'InvalidArgument',
|
11707
|
+
MissingIssuerKeys = 'MissingIssuerKeys',
|
11663
11708
|
FailedPrecondition = 'FailedPrecondition',
|
11664
11709
|
ResourceExhausted = 'ResourceExhausted',
|
11665
11710
|
AlreadyExists = 'AlreadyExists',
|
@@ -11684,7 +11729,7 @@ export namespace Protocol {
|
|
11684
11729
|
* of the operation already exists und thus, the operation was abort
|
11685
11730
|
* preemptively (e.g. a cache hit). (TrustTokenOperationDoneEventStatus enum)
|
11686
11731
|
*/
|
11687
|
-
status: ('Ok' | 'InvalidArgument' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'Unavailable' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally');
|
11732
|
+
status: ('Ok' | 'InvalidArgument' | 'MissingIssuerKeys' | 'FailedPrecondition' | 'ResourceExhausted' | 'AlreadyExists' | 'Unavailable' | 'Unauthorized' | 'BadResponse' | 'InternalError' | 'UnknownError' | 'FulfilledLocally');
|
11688
11733
|
type: TrustTokenOperationType;
|
11689
11734
|
requestId: RequestId;
|
11690
11735
|
/**
|
@@ -12563,7 +12608,7 @@ export namespace Protocol {
|
|
12563
12608
|
* All Permissions Policy features. This enum should match the one defined
|
12564
12609
|
* in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
|
12565
12610
|
*/
|
12566
|
-
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | '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
|
12611
|
+
export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | '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-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' | '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-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-management' | 'window-placement' | 'xr-spatial-tracking');
|
12567
12612
|
|
12568
12613
|
/**
|
12569
12614
|
* Reason for a permissions policy feature to be disabled.
|
@@ -17222,7 +17267,7 @@ export namespace Protocol {
|
|
17222
17267
|
/**
|
17223
17268
|
* List of FinalStatus reasons for Prerender2.
|
17224
17269
|
*/
|
17225
|
-
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | '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');
|
17270
|
+
export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | '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' | 'ResourceLoadBlockedByClient');
|
17226
17271
|
|
17227
17272
|
/**
|
17228
17273
|
* Preloading status values, see also PreloadingTriggeringOutcome. This
|