devtools-protocol 0.0.960519 → 0.0.962425
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 +3 -30
- package/package.json +1 -1
- package/pdl/browser_protocol.pdl +3 -10
- package/types/protocol.d.ts +3 -11
|
@@ -1532,28 +1532,6 @@
|
|
|
1532
1532
|
}
|
|
1533
1533
|
]
|
|
1534
1534
|
},
|
|
1535
|
-
{
|
|
1536
|
-
"id": "WasmCrossOriginModuleSharingIssueDetails",
|
|
1537
|
-
"type": "object",
|
|
1538
|
-
"properties": [
|
|
1539
|
-
{
|
|
1540
|
-
"name": "wasmModuleUrl",
|
|
1541
|
-
"type": "string"
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
"name": "sourceOrigin",
|
|
1545
|
-
"type": "string"
|
|
1546
|
-
},
|
|
1547
|
-
{
|
|
1548
|
-
"name": "targetOrigin",
|
|
1549
|
-
"type": "string"
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
"name": "isWarning",
|
|
1553
|
-
"type": "boolean"
|
|
1554
|
-
}
|
|
1555
|
-
]
|
|
1556
|
-
},
|
|
1557
1535
|
{
|
|
1558
1536
|
"id": "GenericIssueErrorType",
|
|
1559
1537
|
"type": "string",
|
|
@@ -1645,7 +1623,6 @@
|
|
|
1645
1623
|
"AttributionReportingIssue",
|
|
1646
1624
|
"QuirksModeIssue",
|
|
1647
1625
|
"NavigatorUserAgentIssue",
|
|
1648
|
-
"WasmCrossOriginModuleSharingIssue",
|
|
1649
1626
|
"GenericIssue",
|
|
1650
1627
|
"DeprecationIssue",
|
|
1651
1628
|
"ClientHintIssue"
|
|
@@ -1716,11 +1693,6 @@
|
|
|
1716
1693
|
"optional": true,
|
|
1717
1694
|
"$ref": "NavigatorUserAgentIssueDetails"
|
|
1718
1695
|
},
|
|
1719
|
-
{
|
|
1720
|
-
"name": "wasmCrossOriginModuleSharingIssue",
|
|
1721
|
-
"optional": true,
|
|
1722
|
-
"$ref": "WasmCrossOriginModuleSharingIssueDetails"
|
|
1723
|
-
},
|
|
1724
1696
|
{
|
|
1725
1697
|
"name": "genericIssueDetails",
|
|
1726
1698
|
"optional": true,
|
|
@@ -8986,7 +8958,7 @@
|
|
|
8986
8958
|
},
|
|
8987
8959
|
{
|
|
8988
8960
|
"name": "commands",
|
|
8989
|
-
"description": "Editing commands to send with the key event (e.g., 'selectAll') (default: []).\nThese are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.\nSee https://source.chromium.org/chromium/chromium/src/+/
|
|
8961
|
+
"description": "Editing commands to send with the key event (e.g., 'selectAll') (default: []).\nThese are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.\nSee https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.",
|
|
8990
8962
|
"experimental": true,
|
|
8991
8963
|
"optional": true,
|
|
8992
8964
|
"type": "array",
|
|
@@ -14788,7 +14760,8 @@
|
|
|
14788
14760
|
"type": "string",
|
|
14789
14761
|
"enum": [
|
|
14790
14762
|
"Header",
|
|
14791
|
-
"IframeAttribute"
|
|
14763
|
+
"IframeAttribute",
|
|
14764
|
+
"InFencedFrameTree"
|
|
14792
14765
|
]
|
|
14793
14766
|
},
|
|
14794
14767
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
|
@@ -736,13 +736,6 @@ experimental domain Audits
|
|
|
736
736
|
string url
|
|
737
737
|
optional SourceCodeLocation location
|
|
738
738
|
|
|
739
|
-
type WasmCrossOriginModuleSharingIssueDetails extends object
|
|
740
|
-
properties
|
|
741
|
-
string wasmModuleUrl
|
|
742
|
-
string sourceOrigin
|
|
743
|
-
string targetOrigin
|
|
744
|
-
boolean isWarning
|
|
745
|
-
|
|
746
739
|
type GenericIssueErrorType extends string
|
|
747
740
|
enum
|
|
748
741
|
CrossOriginPortalPostMessageError
|
|
@@ -804,7 +797,6 @@ experimental domain Audits
|
|
|
804
797
|
AttributionReportingIssue
|
|
805
798
|
QuirksModeIssue
|
|
806
799
|
NavigatorUserAgentIssue
|
|
807
|
-
WasmCrossOriginModuleSharingIssue
|
|
808
800
|
GenericIssue
|
|
809
801
|
DeprecationIssue
|
|
810
802
|
ClientHintIssue
|
|
@@ -826,7 +818,6 @@ experimental domain Audits
|
|
|
826
818
|
optional AttributionReportingIssueDetails attributionReportingIssueDetails
|
|
827
819
|
optional QuirksModeIssueDetails quirksModeIssueDetails
|
|
828
820
|
optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails
|
|
829
|
-
optional WasmCrossOriginModuleSharingIssueDetails wasmCrossOriginModuleSharingIssue
|
|
830
821
|
optional GenericIssueDetails genericIssueDetails
|
|
831
822
|
optional DeprecationIssueDetails deprecationIssueDetails
|
|
832
823
|
optional ClientHintIssueDetails clientHintIssueDetails
|
|
@@ -4083,7 +4074,7 @@ domain Input
|
|
|
4083
4074
|
optional integer location
|
|
4084
4075
|
# Editing commands to send with the key event (e.g., 'selectAll') (default: []).
|
|
4085
4076
|
# These are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.
|
|
4086
|
-
# See https://source.chromium.org/chromium/chromium/src/+/
|
|
4077
|
+
# See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.
|
|
4087
4078
|
experimental optional array of string commands
|
|
4088
4079
|
|
|
4089
4080
|
# This method emulates inserting text that doesn't come from a key press,
|
|
@@ -6899,6 +6890,8 @@ domain Page
|
|
|
6899
6890
|
Header
|
|
6900
6891
|
# Declaration in iframe attribute.
|
|
6901
6892
|
IframeAttribute
|
|
6893
|
+
# Inside fenced frame.
|
|
6894
|
+
InFencedFrameTree
|
|
6902
6895
|
|
|
6903
6896
|
experimental type PermissionsPolicyBlockLocator extends object
|
|
6904
6897
|
properties
|
package/types/protocol.d.ts
CHANGED
|
@@ -3296,13 +3296,6 @@ export namespace Protocol {
|
|
|
3296
3296
|
location?: SourceCodeLocation;
|
|
3297
3297
|
}
|
|
3298
3298
|
|
|
3299
|
-
export interface WasmCrossOriginModuleSharingIssueDetails {
|
|
3300
|
-
wasmModuleUrl: string;
|
|
3301
|
-
sourceOrigin: string;
|
|
3302
|
-
targetOrigin: string;
|
|
3303
|
-
isWarning: boolean;
|
|
3304
|
-
}
|
|
3305
|
-
|
|
3306
3299
|
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError');
|
|
3307
3300
|
|
|
3308
3301
|
/**
|
|
@@ -3353,7 +3346,7 @@ export namespace Protocol {
|
|
|
3353
3346
|
* optional fields in InspectorIssueDetails to convey more specific
|
|
3354
3347
|
* information about the kind of issue.
|
|
3355
3348
|
*/
|
|
3356
|
-
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | '
|
|
3349
|
+
export type InspectorIssueCode = ('SameSiteCookieIssue' | 'MixedContentIssue' | 'BlockedByResponseIssue' | 'HeavyAdIssue' | 'ContentSecurityPolicyIssue' | 'SharedArrayBufferIssue' | 'TrustedWebActivityIssue' | 'LowTextContrastIssue' | 'CorsIssue' | 'AttributionReportingIssue' | 'QuirksModeIssue' | 'NavigatorUserAgentIssue' | 'GenericIssue' | 'DeprecationIssue' | 'ClientHintIssue');
|
|
3357
3350
|
|
|
3358
3351
|
/**
|
|
3359
3352
|
* This struct holds a list of optional fields with additional information
|
|
@@ -3373,7 +3366,6 @@ export namespace Protocol {
|
|
|
3373
3366
|
attributionReportingIssueDetails?: AttributionReportingIssueDetails;
|
|
3374
3367
|
quirksModeIssueDetails?: QuirksModeIssueDetails;
|
|
3375
3368
|
navigatorUserAgentIssueDetails?: NavigatorUserAgentIssueDetails;
|
|
3376
|
-
wasmCrossOriginModuleSharingIssue?: WasmCrossOriginModuleSharingIssueDetails;
|
|
3377
3369
|
genericIssueDetails?: GenericIssueDetails;
|
|
3378
3370
|
deprecationIssueDetails?: DeprecationIssueDetails;
|
|
3379
3371
|
clientHintIssueDetails?: ClientHintIssueDetails;
|
|
@@ -8076,7 +8068,7 @@ export namespace Protocol {
|
|
|
8076
8068
|
/**
|
|
8077
8069
|
* Editing commands to send with the key event (e.g., 'selectAll') (default: []).
|
|
8078
8070
|
* These are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.
|
|
8079
|
-
* See https://source.chromium.org/chromium/chromium/src/+/
|
|
8071
|
+
* See https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h for valid command names.
|
|
8080
8072
|
*/
|
|
8081
8073
|
commands?: string[];
|
|
8082
8074
|
}
|
|
@@ -11890,7 +11882,7 @@ export namespace Protocol {
|
|
|
11890
11882
|
/**
|
|
11891
11883
|
* Reason for a permissions policy feature to be disabled.
|
|
11892
11884
|
*/
|
|
11893
|
-
export type PermissionsPolicyBlockReason = ('Header' | 'IframeAttribute');
|
|
11885
|
+
export type PermissionsPolicyBlockReason = ('Header' | 'IframeAttribute' | 'InFencedFrameTree');
|
|
11894
11886
|
|
|
11895
11887
|
export interface PermissionsPolicyBlockLocator {
|
|
11896
11888
|
frameId: FrameId;
|