devtools-protocol 0.0.1418467 → 0.0.1419081
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 +30 -0
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +14 -0
- package/types/protocol.d.ts +15 -1
@@ -1887,6 +1887,30 @@
|
|
1887
1887
|
}
|
1888
1888
|
]
|
1889
1889
|
},
|
1890
|
+
{
|
1891
|
+
"id": "PartitioningBlobURLInfo",
|
1892
|
+
"type": "string",
|
1893
|
+
"enum": [
|
1894
|
+
"BlockedCrossPartitionFetching",
|
1895
|
+
"EnforceNoopenerForNavigation"
|
1896
|
+
]
|
1897
|
+
},
|
1898
|
+
{
|
1899
|
+
"id": "PartitioningBlobURLIssueDetails",
|
1900
|
+
"type": "object",
|
1901
|
+
"properties": [
|
1902
|
+
{
|
1903
|
+
"name": "url",
|
1904
|
+
"description": "The BlobURL that failed to load.",
|
1905
|
+
"type": "string"
|
1906
|
+
},
|
1907
|
+
{
|
1908
|
+
"name": "partitioningBlobURLInfo",
|
1909
|
+
"description": "Additional information about the Partitioning Blob URL issue.",
|
1910
|
+
"$ref": "PartitioningBlobURLInfo"
|
1911
|
+
}
|
1912
|
+
]
|
1913
|
+
},
|
1890
1914
|
{
|
1891
1915
|
"id": "SelectElementAccessibilityIssueReason",
|
1892
1916
|
"type": "string",
|
@@ -1996,6 +2020,7 @@
|
|
1996
2020
|
"CorsIssue",
|
1997
2021
|
"AttributionReportingIssue",
|
1998
2022
|
"QuirksModeIssue",
|
2023
|
+
"PartitioningBlobURLIssue",
|
1999
2024
|
"NavigatorUserAgentIssue",
|
2000
2025
|
"GenericIssue",
|
2001
2026
|
"DeprecationIssue",
|
@@ -2065,6 +2090,11 @@
|
|
2065
2090
|
"optional": true,
|
2066
2091
|
"$ref": "QuirksModeIssueDetails"
|
2067
2092
|
},
|
2093
|
+
{
|
2094
|
+
"name": "partitioningBlobURLIssueDetails",
|
2095
|
+
"optional": true,
|
2096
|
+
"$ref": "PartitioningBlobURLIssueDetails"
|
2097
|
+
},
|
2068
2098
|
{
|
2069
2099
|
"name": "navigatorUserAgentIssueDetails",
|
2070
2100
|
"deprecated": true,
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -986,6 +986,18 @@ experimental domain Audits
|
|
986
986
|
string failureMessage
|
987
987
|
optional Network.RequestId requestId
|
988
988
|
|
989
|
+
type PartitioningBlobURLInfo extends string
|
990
|
+
enum
|
991
|
+
BlockedCrossPartitionFetching
|
992
|
+
EnforceNoopenerForNavigation
|
993
|
+
|
994
|
+
type PartitioningBlobURLIssueDetails extends object
|
995
|
+
properties
|
996
|
+
# The BlobURL that failed to load.
|
997
|
+
string url
|
998
|
+
# Additional information about the Partitioning Blob URL issue.
|
999
|
+
PartitioningBlobURLInfo partitioningBlobURLInfo
|
1000
|
+
|
989
1001
|
type SelectElementAccessibilityIssueReason extends string
|
990
1002
|
enum
|
991
1003
|
DisallowedSelectChild
|
@@ -1049,6 +1061,7 @@ experimental domain Audits
|
|
1049
1061
|
CorsIssue
|
1050
1062
|
AttributionReportingIssue
|
1051
1063
|
QuirksModeIssue
|
1064
|
+
PartitioningBlobURLIssue
|
1052
1065
|
# Deprecated
|
1053
1066
|
NavigatorUserAgentIssue
|
1054
1067
|
GenericIssue
|
@@ -1078,6 +1091,7 @@ experimental domain Audits
|
|
1078
1091
|
optional CorsIssueDetails corsIssueDetails
|
1079
1092
|
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
1080
1093
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
1094
|
+
optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails
|
1081
1095
|
deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
1082
1096
|
optional GenericIssueDetails genericIssueDetails
|
1083
1097
|
optional DeprecationIssueDetails deprecationIssueDetails
|
package/types/protocol.d.ts
CHANGED
@@ -3677,6 +3677,19 @@ export namespace Protocol {
|
|
3677
3677
|
requestId?: Network.RequestId;
|
3678
3678
|
}
|
3679
3679
|
|
3680
|
+
export type PartitioningBlobURLInfo = ('BlockedCrossPartitionFetching' | 'EnforceNoopenerForNavigation');
|
3681
|
+
|
3682
|
+
export interface PartitioningBlobURLIssueDetails {
|
3683
|
+
/**
|
3684
|
+
* The BlobURL that failed to load.
|
3685
|
+
*/
|
3686
|
+
url: string;
|
3687
|
+
/**
|
3688
|
+
* Additional information about the Partitioning Blob URL issue.
|
3689
|
+
*/
|
3690
|
+
partitioningBlobURLInfo: PartitioningBlobURLInfo;
|
3691
|
+
}
|
3692
|
+
|
3680
3693
|
export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
|
3681
3694
|
|
3682
3695
|
/**
|
@@ -3734,7 +3747,7 @@ export namespace Protocol {
|
|
3734
3747
|
* optional fields in InspectorIssueDetails to convey more specific
|
3735
3748
|
* information about the kind of issue.
|
3736
3749
|
*/
|
3737
|
-
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue');
|
3750
|
+
export type InspectorIssueCode = ('CookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'PartitioningBlobURLIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue' | 'FederatedAuthRequestIssue' | 'BounceTrackingIssue' | 'CookieDeprecationMetadataIssue' | 'StylesheetLoadingIssue' | 'FederatedAuthUserInfoRequestIssue' | 'PropertyRuleIssue' | 'SharedDictionaryIssue' | 'SelectElementAccessibilityIssue');
|
3738
3751
|
|
3739
3752
|
/**
|
3740
3753
|
* This struct holds a list of optional fields with additional information
|
@@ -3752,6 +3765,7 @@ export namespace Protocol {
|
|
3752
3765
|
corsIssueDetails?: CorsIssueDetails;
|
3753
3766
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
3754
3767
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
3768
|
+
partitioningBlobURLIssueDetails?: PartitioningBlobURLIssueDetails;
|
3755
3769
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
3756
3770
|
genericIssueDetails?: GenericIssueDetails;
|
3757
3771
|
deprecationIssueDetails?: DeprecationIssueDetails;
|