playwright-core 1.58.0-alpha-2025-12-12 → 1.58.0-alpha-2025-12-14

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.
@@ -441,9 +441,9 @@ Does not exist for animations with ScrollTimeline
441
441
  */
442
442
  iterationStart: number;
443
443
  /**
444
- * `AnimationEffect`'s iterations.
444
+ * `AnimationEffect`'s iterations. Omitted if the value is infinite.
445
445
  */
446
- iterations: number;
446
+ iterations?: number;
447
447
  /**
448
448
  * `AnimationEffect`'s iteration duration.
449
449
  Milliseconds for time based animations and
@@ -906,7 +906,7 @@ instead of "limited-quirks".
906
906
  error: UnencodedDigestError;
907
907
  request: AffectedRequest;
908
908
  }
909
- export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingId"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInput"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB";
909
+ export type GenericIssueErrorType = "FormLabelForNameError"|"FormDuplicateIdForInputError"|"FormInputWithNoLabelError"|"FormAutocompleteAttributeEmptyError"|"FormEmptyIdAndNameAttributesForInputError"|"FormAriaLabelledByToNonExistingIdError"|"FormInputAssignedAutocompleteValueToIdOrNameAttributeError"|"FormLabelHasNeitherForNorNestedInputError"|"FormLabelForMatchesNonExistingIdError"|"FormInputHasWrongButWellIntendedAutocompleteValueError"|"ResponseWasBlockedByORB"|"NavigationEntryMarkedSkippable";
910
910
  /**
911
911
  * Depending on the concrete errorType, different properties are set.
912
912
  */
@@ -1067,12 +1067,48 @@ re-identify users.
1067
1067
  */
1068
1068
  sourceCodeLocation?: SourceCodeLocation;
1069
1069
  }
1070
+ export type PermissionElementIssueType = "InvalidType"|"FencedFrameDisallowed"|"CspFrameAncestorsMissing"|"PermissionsPolicyBlocked"|"PaddingRightUnsupported"|"PaddingBottomUnsupported"|"InsetBoxShadowUnsupported"|"RequestInProgress"|"UntrustedEvent"|"RegistrationFailed"|"TypeNotSupported"|"InvalidTypeActivation"|"SecurityChecksFailed"|"ActivationDisabled"|"GeolocationDeprecated"|"InvalidDisplayStyle"|"NonOpaqueColor"|"LowContrast"|"FontSizeTooSmall"|"FontSizeTooLarge"|"InvalidSizeValue";
1071
+ /**
1072
+ * This issue warns about improper usage of the <permission> element.
1073
+ */
1074
+ export interface PermissionElementIssueDetails {
1075
+ issueType: PermissionElementIssueType;
1076
+ /**
1077
+ * The value of the type attribute.
1078
+ */
1079
+ type?: string;
1080
+ /**
1081
+ * The node ID of the <permission> element.
1082
+ */
1083
+ nodeId?: DOM.BackendNodeId;
1084
+ /**
1085
+ * True if the issue is a warning, false if it is an error.
1086
+ */
1087
+ isWarning?: boolean;
1088
+ /**
1089
+ * Fields for message construction:
1090
+ Used for messages that reference a specific permission name
1091
+ */
1092
+ permissionName?: string;
1093
+ /**
1094
+ * Used for messages about occlusion
1095
+ */
1096
+ occluderNodeInfo?: string;
1097
+ /**
1098
+ * Used for messages about occluder's parent
1099
+ */
1100
+ occluderParentNodeInfo?: string;
1101
+ /**
1102
+ * Used for messages about activation disabled reason
1103
+ */
1104
+ disableReason?: string;
1105
+ }
1070
1106
  /**
1071
1107
  * A unique identifier for the type of issue. Each type may use one of the
1072
1108
  optional fields in InspectorIssueDetails to convey more specific
1073
1109
  information about the kind of issue.
1074
1110
  */
1075
- 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"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"UserReidentificationIssue";
1111
+ 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"|"ElementAccessibilityIssue"|"SRIMessageSignatureIssue"|"UnencodedDigestIssue"|"UserReidentificationIssue"|"PermissionElementIssue";
1076
1112
  /**
1077
1113
  * This struct holds a list of optional fields with additional information
1078
1114
  specific to the kind of issue. When adding a new issue code, please also
@@ -1105,6 +1141,7 @@ add a new optional field to this type.
1105
1141
  sriMessageSignatureIssueDetails?: SRIMessageSignatureIssueDetails;
1106
1142
  unencodedDigestIssueDetails?: UnencodedDigestIssueDetails;
1107
1143
  userReidentificationIssueDetails?: UserReidentificationIssueDetails;
1144
+ permissionElementIssueDetails?: PermissionElementIssueDetails;
1108
1145
  }
1109
1146
  /**
1110
1147
  * A unique id for a DevTools inspector issue. Allows other entities (e.g.
@@ -2248,7 +2285,6 @@ can also keep track of stylesheets via the `styleSheetAdded`/`styleSheetRemoved`
2248
2285
  subsequently load the required stylesheet contents using the `getStyleSheet[Text]()` methods.
2249
2286
  */
2250
2287
  export module CSS {
2251
- export type StyleSheetId = string;
2252
2288
  /**
2253
2289
  * Stylesheet type: "injected" for stylesheets injected via extension, "user-agent" for user-agent
2254
2290
  stylesheets, "inspector" for stylesheets created by the inspector (i.e. those holding the "via
@@ -2389,7 +2425,7 @@ pseudo-classes.
2389
2425
  /**
2390
2426
  * The stylesheet identifier.
2391
2427
  */
2392
- styleSheetId: StyleSheetId;
2428
+ styleSheetId: DOM.StyleSheetId;
2393
2429
  /**
2394
2430
  * Owner frame identifier.
2395
2431
  */
@@ -2474,7 +2510,7 @@ CSS module script.
2474
2510
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
2475
2511
  stylesheet rules) this rule came from.
2476
2512
  */
2477
- styleSheetId?: StyleSheetId;
2513
+ styleSheetId?: DOM.StyleSheetId;
2478
2514
  /**
2479
2515
  * Rule selector data.
2480
2516
  */
@@ -2543,7 +2579,7 @@ This list only contains rule types that are collected during the ancestor rule c
2543
2579
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
2544
2580
  stylesheet rules) this rule came from.
2545
2581
  */
2546
- styleSheetId: StyleSheetId;
2582
+ styleSheetId: DOM.StyleSheetId;
2547
2583
  /**
2548
2584
  * Offset of the start of the rule (including selector) from the beginning of the stylesheet.
2549
2585
  */
@@ -2618,7 +2654,7 @@ or it is in the subtree of an element being rendered with base appearance.
2618
2654
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
2619
2655
  stylesheet rules) this rule came from.
2620
2656
  */
2621
- styleSheetId?: StyleSheetId;
2657
+ styleSheetId?: DOM.StyleSheetId;
2622
2658
  /**
2623
2659
  * CSS properties in the style.
2624
2660
  */
@@ -2705,7 +2741,7 @@ available).
2705
2741
  /**
2706
2742
  * Identifier of the stylesheet containing this object (if exists).
2707
2743
  */
2708
- styleSheetId?: StyleSheetId;
2744
+ styleSheetId?: DOM.StyleSheetId;
2709
2745
  /**
2710
2746
  * Array of media queries.
2711
2747
  */
@@ -2765,7 +2801,7 @@ available).
2765
2801
  /**
2766
2802
  * Identifier of the stylesheet containing this object (if exists).
2767
2803
  */
2768
- styleSheetId?: StyleSheetId;
2804
+ styleSheetId?: DOM.StyleSheetId;
2769
2805
  /**
2770
2806
  * Optional name for the container.
2771
2807
  */
@@ -2807,7 +2843,7 @@ available).
2807
2843
  /**
2808
2844
  * Identifier of the stylesheet containing this object (if exists).
2809
2845
  */
2810
- styleSheetId?: StyleSheetId;
2846
+ styleSheetId?: DOM.StyleSheetId;
2811
2847
  }
2812
2848
  /**
2813
2849
  * CSS Scope at-rule descriptor.
@@ -2825,7 +2861,7 @@ available).
2825
2861
  /**
2826
2862
  * Identifier of the stylesheet containing this object (if exists).
2827
2863
  */
2828
- styleSheetId?: StyleSheetId;
2864
+ styleSheetId?: DOM.StyleSheetId;
2829
2865
  }
2830
2866
  /**
2831
2867
  * CSS Layer at-rule descriptor.
@@ -2843,7 +2879,7 @@ available).
2843
2879
  /**
2844
2880
  * Identifier of the stylesheet containing this object (if exists).
2845
2881
  */
2846
- styleSheetId?: StyleSheetId;
2882
+ styleSheetId?: DOM.StyleSheetId;
2847
2883
  }
2848
2884
  /**
2849
2885
  * CSS Starting Style at-rule descriptor.
@@ -2857,7 +2893,7 @@ available).
2857
2893
  /**
2858
2894
  * Identifier of the stylesheet containing this object (if exists).
2859
2895
  */
2860
- styleSheetId?: StyleSheetId;
2896
+ styleSheetId?: DOM.StyleSheetId;
2861
2897
  }
2862
2898
  /**
2863
2899
  * CSS Layer data.
@@ -2977,7 +3013,7 @@ and additional information such as platformFontFamily and fontVariationAxes.
2977
3013
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
2978
3014
  stylesheet rules) this rule came from.
2979
3015
  */
2980
- styleSheetId?: StyleSheetId;
3016
+ styleSheetId?: DOM.StyleSheetId;
2981
3017
  /**
2982
3018
  * Parent stylesheet's origin.
2983
3019
  */
@@ -2999,7 +3035,7 @@ stylesheet rules) this rule came from.
2999
3035
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
3000
3036
  stylesheet rules) this rule came from.
3001
3037
  */
3002
- styleSheetId?: StyleSheetId;
3038
+ styleSheetId?: DOM.StyleSheetId;
3003
3039
  /**
3004
3040
  * Parent stylesheet's origin.
3005
3041
  */
@@ -3033,22 +3069,31 @@ stylesheet rules) this rule came from.
3033
3069
  syntax: string;
3034
3070
  }
3035
3071
  /**
3036
- * CSS font-palette-values rule representation.
3072
+ * CSS generic @rule representation.
3037
3073
  */
3038
- export interface CSSFontPaletteValuesRule {
3074
+ export interface CSSAtRule {
3075
+ /**
3076
+ * Type of at-rule.
3077
+ */
3078
+ type: "font-face"|"font-feature-values"|"font-palette-values";
3079
+ /**
3080
+ * Subsection of font-feature-values, if this is a subsection.
3081
+ */
3082
+ subsection?: "swash"|"annotation"|"ornaments"|"stylistic"|"styleset"|"character-variant";
3083
+ /**
3084
+ * LINT.ThenChange(//third_party/blink/renderer/core/inspector/inspector_style_sheet.cc:FontVariantAlternatesFeatureType,//third_party/blink/renderer/core/inspector/inspector_css_agent.cc:FontVariantAlternatesFeatureType)
3085
+ Associated name, if applicable.
3086
+ */
3087
+ name?: Value;
3039
3088
  /**
3040
3089
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
3041
3090
  stylesheet rules) this rule came from.
3042
3091
  */
3043
- styleSheetId?: StyleSheetId;
3092
+ styleSheetId?: DOM.StyleSheetId;
3044
3093
  /**
3045
3094
  * Parent stylesheet's origin.
3046
3095
  */
3047
3096
  origin: StyleSheetOrigin;
3048
- /**
3049
- * Associated font palette name.
3050
- */
3051
- fontPaletteName: Value;
3052
3097
  /**
3053
3098
  * Associated style declaration.
3054
3099
  */
@@ -3062,7 +3107,7 @@ stylesheet rules) this rule came from.
3062
3107
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
3063
3108
  stylesheet rules) this rule came from.
3064
3109
  */
3065
- styleSheetId?: StyleSheetId;
3110
+ styleSheetId?: DOM.StyleSheetId;
3066
3111
  /**
3067
3112
  * Parent stylesheet's origin.
3068
3113
  */
@@ -3139,7 +3184,7 @@ stylesheet rules) this rule came from.
3139
3184
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
3140
3185
  stylesheet rules) this rule came from.
3141
3186
  */
3142
- styleSheetId?: StyleSheetId;
3187
+ styleSheetId?: DOM.StyleSheetId;
3143
3188
  /**
3144
3189
  * Parent stylesheet's origin.
3145
3190
  */
@@ -3161,7 +3206,7 @@ stylesheet rules) this rule came from.
3161
3206
  * The css style sheet identifier (absent for user agent stylesheet and user-specified
3162
3207
  stylesheet rules) this rule came from.
3163
3208
  */
3164
- styleSheetId?: StyleSheetId;
3209
+ styleSheetId?: DOM.StyleSheetId;
3165
3210
  /**
3166
3211
  * Parent stylesheet's origin.
3167
3212
  */
@@ -3182,7 +3227,7 @@ stylesheet rules) this rule came from.
3182
3227
  /**
3183
3228
  * The css style sheet identifier.
3184
3229
  */
3185
- styleSheetId: StyleSheetId;
3230
+ styleSheetId: DOM.StyleSheetId;
3186
3231
  /**
3187
3232
  * The range of the style text in the enclosing stylesheet.
3188
3233
  */
@@ -3221,7 +3266,7 @@ resized.) The current implementation considers only viewport-dependent media fea
3221
3266
  * Fired whenever a stylesheet is changed as a result of the client operation.
3222
3267
  */
3223
3268
  export type styleSheetChangedPayload = {
3224
- styleSheetId: StyleSheetId;
3269
+ styleSheetId: DOM.StyleSheetId;
3225
3270
  }
3226
3271
  /**
3227
3272
  * Fired whenever an active document stylesheet is removed.
@@ -3230,7 +3275,7 @@ resized.) The current implementation considers only viewport-dependent media fea
3230
3275
  /**
3231
3276
  * Identifier of the removed stylesheet.
3232
3277
  */
3233
- styleSheetId: StyleSheetId;
3278
+ styleSheetId: DOM.StyleSheetId;
3234
3279
  }
3235
3280
  export type computedStyleUpdatedPayload = {
3236
3281
  /**
@@ -3247,7 +3292,7 @@ position specified by `location`.
3247
3292
  /**
3248
3293
  * The css style sheet identifier where a new rule should be inserted.
3249
3294
  */
3250
- styleSheetId: StyleSheetId;
3295
+ styleSheetId: DOM.StyleSheetId;
3251
3296
  /**
3252
3297
  * The text of a new rule.
3253
3298
  */
@@ -3273,7 +3318,7 @@ incorrect results if the declaration contains a var() for example.
3273
3318
  * Returns all class names from specified stylesheet.
3274
3319
  */
3275
3320
  export type collectClassNamesParameters = {
3276
- styleSheetId: StyleSheetId;
3321
+ styleSheetId: DOM.StyleSheetId;
3277
3322
  }
3278
3323
  export type collectClassNamesReturnValue = {
3279
3324
  /**
@@ -3301,7 +3346,7 @@ for the frame's document if it exists or creates a new stylesheet
3301
3346
  /**
3302
3347
  * Identifier of the created "via-inspector" stylesheet.
3303
3348
  */
3304
- styleSheetId: StyleSheetId;
3349
+ styleSheetId: DOM.StyleSheetId;
3305
3350
  }
3306
3351
  /**
3307
3352
  * Disables the CSS agent for the given page.
@@ -3527,9 +3572,9 @@ will not be set if there is no active position-try fallback.
3527
3572
  */
3528
3573
  cssPropertyRegistrations?: CSSPropertyRegistration[];
3529
3574
  /**
3530
- * A font-palette-values rule matching this node.
3575
+ * A list of simple @rules matching this node or its pseudo-elements.
3531
3576
  */
3532
- cssFontPaletteValuesRule?: CSSFontPaletteValuesRule;
3577
+ cssAtRules?: CSSAtRule[];
3533
3578
  /**
3534
3579
  * Id of the first parent element that does not have display: contents.
3535
3580
  */
@@ -3572,7 +3617,7 @@ node.
3572
3617
  * Returns the current textual content for a stylesheet.
3573
3618
  */
3574
3619
  export type getStyleSheetTextParameters = {
3575
- styleSheetId: StyleSheetId;
3620
+ styleSheetId: DOM.StyleSheetId;
3576
3621
  }
3577
3622
  export type getStyleSheetTextReturnValue = {
3578
3623
  /**
@@ -3597,7 +3642,7 @@ the full layer tree for the tree scope and their ordering.
3597
3642
  returns an array of locations of the CSS selector in the style sheet.
3598
3643
  */
3599
3644
  export type getLocationForSelectorParameters = {
3600
- styleSheetId: StyleSheetId;
3645
+ styleSheetId: DOM.StyleSheetId;
3601
3646
  selectorText: string;
3602
3647
  }
3603
3648
  export type getLocationForSelectorReturnValue = {
@@ -3658,7 +3703,7 @@ property
3658
3703
  * Modifies the property rule property name.
3659
3704
  */
3660
3705
  export type setPropertyRulePropertyNameParameters = {
3661
- styleSheetId: StyleSheetId;
3706
+ styleSheetId: DOM.StyleSheetId;
3662
3707
  range: SourceRange;
3663
3708
  propertyName: string;
3664
3709
  }
@@ -3672,7 +3717,7 @@ property
3672
3717
  * Modifies the keyframe rule key text.
3673
3718
  */
3674
3719
  export type setKeyframeKeyParameters = {
3675
- styleSheetId: StyleSheetId;
3720
+ styleSheetId: DOM.StyleSheetId;
3676
3721
  range: SourceRange;
3677
3722
  keyText: string;
3678
3723
  }
@@ -3686,7 +3731,7 @@ property
3686
3731
  * Modifies the rule selector.
3687
3732
  */
3688
3733
  export type setMediaTextParameters = {
3689
- styleSheetId: StyleSheetId;
3734
+ styleSheetId: DOM.StyleSheetId;
3690
3735
  range: SourceRange;
3691
3736
  text: string;
3692
3737
  }
@@ -3700,7 +3745,7 @@ property
3700
3745
  * Modifies the expression of a container query.
3701
3746
  */
3702
3747
  export type setContainerQueryTextParameters = {
3703
- styleSheetId: StyleSheetId;
3748
+ styleSheetId: DOM.StyleSheetId;
3704
3749
  range: SourceRange;
3705
3750
  text: string;
3706
3751
  }
@@ -3714,7 +3759,7 @@ property
3714
3759
  * Modifies the expression of a supports at-rule.
3715
3760
  */
3716
3761
  export type setSupportsTextParameters = {
3717
- styleSheetId: StyleSheetId;
3762
+ styleSheetId: DOM.StyleSheetId;
3718
3763
  range: SourceRange;
3719
3764
  text: string;
3720
3765
  }
@@ -3728,7 +3773,7 @@ property
3728
3773
  * Modifies the expression of a scope at-rule.
3729
3774
  */
3730
3775
  export type setScopeTextParameters = {
3731
- styleSheetId: StyleSheetId;
3776
+ styleSheetId: DOM.StyleSheetId;
3732
3777
  range: SourceRange;
3733
3778
  text: string;
3734
3779
  }
@@ -3742,7 +3787,7 @@ property
3742
3787
  * Modifies the rule selector.
3743
3788
  */
3744
3789
  export type setRuleSelectorParameters = {
3745
- styleSheetId: StyleSheetId;
3790
+ styleSheetId: DOM.StyleSheetId;
3746
3791
  range: SourceRange;
3747
3792
  selector: string;
3748
3793
  }
@@ -3756,7 +3801,7 @@ property
3756
3801
  * Sets the new stylesheet text.
3757
3802
  */
3758
3803
  export type setStyleSheetTextParameters = {
3759
- styleSheetId: StyleSheetId;
3804
+ styleSheetId: DOM.StyleSheetId;
3760
3805
  text: string;
3761
3806
  }
3762
3807
  export type setStyleSheetTextReturnValue = {
@@ -4121,6 +4166,10 @@ corresponding document elements as their child nodes.
4121
4166
  front-end.
4122
4167
  */
4123
4168
  export type BackendNodeId = number;
4169
+ /**
4170
+ * Unique identifier for a CSS stylesheet.
4171
+ */
4172
+ export type StyleSheetId = string;
4124
4173
  /**
4125
4174
  * Backend node with a friendly name.
4126
4175
  */
@@ -4138,7 +4187,7 @@ front-end.
4138
4187
  /**
4139
4188
  * Pseudo element type.
4140
4189
  */
4141
- export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-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-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon";
4190
+ export type PseudoType = "first-line"|"first-letter"|"checkmark"|"before"|"after"|"picker-icon"|"interest-hint"|"marker"|"backdrop"|"column"|"selection"|"search-text"|"target-text"|"spelling-error"|"grammar-error"|"highlight"|"first-line-inherited"|"scroll-marker"|"scroll-marker-group"|"scroll-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-group-children"|"view-transition-old"|"view-transition-new"|"placeholder"|"file-selector-button"|"details-content"|"picker"|"permission-icon"|"overscroll-area-parent"|"overscroll-client-area";
4142
4191
  /**
4143
4192
  * Shadow root type.
4144
4193
  */
@@ -4289,6 +4338,7 @@ The property is always undefined now.
4289
4338
  assignedSlot?: BackendNode;
4290
4339
  isScrollable?: boolean;
4291
4340
  affectedByStartingStyles?: boolean;
4341
+ adoptedStyleSheets?: StyleSheetId[];
4292
4342
  }
4293
4343
  /**
4294
4344
  * A structure to hold the top-level node of a detached tree and an array of its retained descendants.
@@ -4421,6 +4471,19 @@ The property is always undefined now.
4421
4471
  */
4422
4472
  value: string;
4423
4473
  }
4474
+ /**
4475
+ * Fired when `Element`'s adoptedStyleSheets are modified.
4476
+ */
4477
+ export type adoptedStyleSheetsModifiedPayload = {
4478
+ /**
4479
+ * Id of the node that has changed.
4480
+ */
4481
+ nodeId: NodeId;
4482
+ /**
4483
+ * New adoptedStyleSheets array.
4484
+ */
4485
+ adoptedStyleSheets: StyleSheetId[];
4486
+ }
4424
4487
  /**
4425
4488
  * Fired when `Element`'s attribute is removed.
4426
4489
  */
@@ -10204,11 +10267,6 @@ applicable or not known.
10204
10267
  * The reason why request was blocked.
10205
10268
  */
10206
10269
  export type BlockedReason = "other"|"csp"|"mixed-content"|"origin"|"inspector"|"integrity"|"subresource-filter"|"content-type"|"coep-frame-resource-needs-coep-header"|"coop-sandboxed-iframe-cannot-navigate-to-coop-page"|"corp-not-same-origin"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep"|"corp-not-same-origin-after-defaulted-to-same-origin-by-dip"|"corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip"|"corp-not-same-site"|"sri-message-signature-mismatch";
10207
- /**
10208
- * Sets Controls for IP Proxy of requests.
10209
- Page reload is required before the new behavior will be observed.
10210
- */
10211
- export type IpProxyStatus = "Available"|"FeatureNotEnabled"|"MaskedDomainListNotEnabled"|"MaskedDomainListNotPopulated"|"AuthTokensUnavailable"|"Unavailable"|"BypassedByDevTools";
10212
10270
  /**
10213
10271
  * The reason why request was blocked.
10214
10272
  */
@@ -10379,11 +10437,6 @@ Otherwise, the API is not used.
10379
10437
  * Security details for the request.
10380
10438
  */
10381
10439
  securityDetails?: SecurityDetails;
10382
- /**
10383
- * Indicates whether the request was sent through IP Protection proxies. If
10384
- set to true, the request used the IP Protection privacy feature.
10385
- */
10386
- isIpProtectionUsed?: boolean;
10387
10440
  }
10388
10441
  /**
10389
10442
  * WebSocket request data.
@@ -10989,6 +11042,12 @@ matched (including p2p connections).
10989
11042
  * Expected to be unsigned integer.
10990
11043
  */
10991
11044
  receiveBufferSize?: number;
11045
+ multicastLoopback?: boolean;
11046
+ /**
11047
+ * Unsigned int 8.
11048
+ */
11049
+ multicastTimeToLive?: number;
11050
+ multicastAllowAddressSharing?: boolean;
10992
11051
  }
10993
11052
  export interface DirectUDPMessage {
10994
11053
  data: binary;
@@ -11002,7 +11061,7 @@ Expected to be unsigned integer.
11002
11061
  */
11003
11062
  remotePort?: number;
11004
11063
  }
11005
- export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PreflightBlock"|"PreflightWarn"|"PermissionBlock"|"PermissionWarn";
11064
+ export type PrivateNetworkRequestPolicy = "Allow"|"BlockFromInsecureToMorePrivate"|"WarnFromInsecureToMorePrivate"|"PermissionBlock"|"PermissionWarn";
11006
11065
  export type IPAddressSpace = "Loopback"|"Local"|"Public"|"Unknown";
11007
11066
  export interface ConnectTiming {
11008
11067
  /**
@@ -11634,6 +11693,14 @@ or were emitted for this request.
11634
11693
  data: binary;
11635
11694
  timestamp: MonotonicTime;
11636
11695
  }
11696
+ export type directUDPSocketJoinedMulticastGroupPayload = {
11697
+ identifier: RequestId;
11698
+ IPAddress: string;
11699
+ }
11700
+ export type directUDPSocketLeftMulticastGroupPayload = {
11701
+ identifier: RequestId;
11702
+ IPAddress: string;
11703
+ }
11637
11704
  /**
11638
11705
  * Fired upon direct_socket.UDPSocket creation.
11639
11706
  */
@@ -11852,29 +11919,6 @@ And after 'enableReportingApi' for all existing reports.
11852
11919
  endpoints: ReportingApiEndpoint[];
11853
11920
  }
11854
11921
 
11855
- /**
11856
- * Returns enum representing if IP Proxy of requests is available
11857
- or reason it is not active.
11858
- */
11859
- export type getIPProtectionProxyStatusParameters = {
11860
- }
11861
- export type getIPProtectionProxyStatusReturnValue = {
11862
- /**
11863
- * Whether IP proxy is available
11864
- */
11865
- status: IpProxyStatus;
11866
- }
11867
- /**
11868
- * Sets bypass IP Protection Proxy boolean.
11869
- */
11870
- export type setIPProtectionProxyBypassEnabledParameters = {
11871
- /**
11872
- * Whether IP Proxy is being bypassed by devtools; false by default.
11873
- */
11874
- enabled: boolean;
11875
- }
11876
- export type setIPProtectionProxyBypassEnabledReturnValue = {
11877
- }
11878
11922
  /**
11879
11923
  * Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
11880
11924
  */
@@ -13616,7 +13660,7 @@ available.
13616
13660
  in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
13617
13661
  LINT.IfChange(PermissionsPolicyFeature)
13618
13662
  */
13619
- export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"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-high-entropy-values"|"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"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network-access"|"magnetometer"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"popins"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-autofill"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
13663
+ export type PermissionsPolicyFeature = "accelerometer"|"all-screens-capture"|"ambient-light-sensor"|"aria-notify"|"attribution-reporting"|"autofill"|"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-high-entropy-values"|"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"|"controlled-frame"|"cross-origin-isolated"|"deferred-fetch"|"deferred-fetch-minimal"|"device-attributes"|"digital-credentials-create"|"digital-credentials-get"|"direct-sockets"|"direct-sockets-multicast"|"direct-sockets-private"|"display-capture"|"document-domain"|"encrypted-media"|"execution-while-out-of-viewport"|"execution-while-not-rendered"|"fenced-unpartitioned-storage-read"|"focus-without-user-activation"|"fullscreen"|"frobulate"|"gamepad"|"geolocation"|"gyroscope"|"hid"|"identity-credentials-get"|"idle-detection"|"interest-cohort"|"join-ad-interest-group"|"keyboard-map"|"language-detector"|"language-model"|"local-fonts"|"local-network-access"|"magnetometer"|"manual-text"|"media-playback-while-not-visible"|"microphone"|"midi"|"on-device-speech-recognition"|"otp-credentials"|"payment"|"picture-in-picture"|"private-aggregation"|"private-state-token-issuance"|"private-state-token-redemption"|"publickey-credentials-create"|"publickey-credentials-get"|"record-ad-auction-events"|"rewriter"|"run-ad-auction"|"screen-wake-lock"|"serial"|"shared-storage"|"shared-storage-select-url"|"smart-card"|"speaker-selection"|"storage-access"|"sub-apps"|"summarizer"|"sync-xhr"|"translator"|"unload"|"usb"|"usb-unrestricted"|"vertical-scroll"|"web-app-installation"|"web-printing"|"web-share"|"window-management"|"writer"|"xr-spatial-tracking";
13620
13664
  /**
13621
13665
  * Reason for a permissions policy feature to be disabled.
13622
13666
  */
@@ -15650,6 +15694,24 @@ TODO(https://crbug.com/1440085): Remove this once Puppeteer supports tab targets
15650
15694
  }
15651
15695
  export type setPrerenderingAllowedReturnValue = {
15652
15696
  }
15697
+ /**
15698
+ * Get the annotated page content for the main frame.
15699
+ This is an experimental command that is subject to change.
15700
+ */
15701
+ export type getAnnotatedPageContentParameters = {
15702
+ /**
15703
+ * Whether to include actionable information. Defaults to true.
15704
+ */
15705
+ includeActionableInformation?: boolean;
15706
+ }
15707
+ export type getAnnotatedPageContentReturnValue = {
15708
+ /**
15709
+ * The annotated page content as a base64 encoded protobuf.
15710
+ The format is defined by the `AnnotatedPageContent` message in
15711
+ components/optimization_guide/proto/features/common_quality_data.proto
15712
+ */
15713
+ content: binary;
15714
+ }
15653
15715
  }
15654
15716
 
15655
15717
  export module Performance {
@@ -17640,28 +17702,6 @@ resolution and maximum framerate.
17640
17702
  * Image format of a given image.
17641
17703
  */
17642
17704
  export type ImageType = "jpeg"|"webp"|"unknown";
17643
- /**
17644
- * Describes a supported image decoding profile with its associated minimum and
17645
- maximum resolutions and subsampling.
17646
- */
17647
- export interface ImageDecodeAcceleratorCapability {
17648
- /**
17649
- * Image coded, e.g. Jpeg.
17650
- */
17651
- imageType: ImageType;
17652
- /**
17653
- * Maximum supported dimensions of the image in pixels.
17654
- */
17655
- maxDimensions: Size;
17656
- /**
17657
- * Minimum supported dimensions of the image in pixels.
17658
- */
17659
- minDimensions: Size;
17660
- /**
17661
- * Optional array of supported subsampling formats, e.g. 4:2:0, if known.
17662
- */
17663
- subsamplings: SubsamplingFormat[];
17664
- }
17665
17705
  /**
17666
17706
  * Provides information about the GPU(s) on the system.
17667
17707
  */
@@ -17690,10 +17730,6 @@ maximum resolutions and subsampling.
17690
17730
  * Supported accelerated video encoding capabilities.
17691
17731
  */
17692
17732
  videoEncoding: VideoEncodeAcceleratorCapability[];
17693
- /**
17694
- * Supported accelerated image decoding capabilities.
17695
- */
17696
- imageDecoding: ImageDecodeAcceleratorCapability[];
17697
17733
  }
17698
17734
  /**
17699
17735
  * Represents process info.
@@ -18239,6 +18275,22 @@ to run paused targets.
18239
18275
  }
18240
18276
  export type setRemoteLocationsReturnValue = {
18241
18277
  }
18278
+ /**
18279
+ * Gets the targetId of the DevTools page target opened for the given target
18280
+ (if any).
18281
+ */
18282
+ export type getDevToolsTargetParameters = {
18283
+ /**
18284
+ * Page or tab target ID.
18285
+ */
18286
+ targetId: TargetID;
18287
+ }
18288
+ export type getDevToolsTargetReturnValue = {
18289
+ /**
18290
+ * The targetId of DevTools page target if exists.
18291
+ */
18292
+ targetId?: TargetID;
18293
+ }
18242
18294
  /**
18243
18295
  * Opens a DevTools window for the target.
18244
18296
  */
@@ -18247,6 +18299,12 @@ to run paused targets.
18247
18299
  * This can be the page or tab target ID.
18248
18300
  */
18249
18301
  targetId: TargetID;
18302
+ /**
18303
+ * The id of the panel we want DevTools to open initially. Currently
18304
+ supported panels are elements, console, network, sources, resources
18305
+ and performance.
18306
+ */
18307
+ panelId?: string;
18250
18308
  }
18251
18309
  export type openDevToolsReturnValue = {
18252
18310
  /**
@@ -21734,7 +21792,7 @@ Error was thrown.
21734
21792
  }
21735
21793
  }
21736
21794
 
21737
- export interface Events {
21795
+ export type Events = {
21738
21796
  "Accessibility.loadComplete": Accessibility.loadCompletePayload;
21739
21797
  "Accessibility.nodesUpdated": Accessibility.nodesUpdatedPayload;
21740
21798
  "Animation.animationCanceled": Animation.animationCanceledPayload;
@@ -21759,6 +21817,7 @@ Error was thrown.
21759
21817
  "Cast.sinksUpdated": Cast.sinksUpdatedPayload;
21760
21818
  "Cast.issueUpdated": Cast.issueUpdatedPayload;
21761
21819
  "DOM.attributeModified": DOM.attributeModifiedPayload;
21820
+ "DOM.adoptedStyleSheetsModified": DOM.adoptedStyleSheetsModifiedPayload;
21762
21821
  "DOM.attributeRemoved": DOM.attributeRemovedPayload;
21763
21822
  "DOM.characterDataModified": DOM.characterDataModifiedPayload;
21764
21823
  "DOM.childNodeCountUpdated": DOM.childNodeCountUpdatedPayload;
@@ -21824,6 +21883,8 @@ Error was thrown.
21824
21883
  "Network.directTCPSocketClosed": Network.directTCPSocketClosedPayload;
21825
21884
  "Network.directTCPSocketChunkSent": Network.directTCPSocketChunkSentPayload;
21826
21885
  "Network.directTCPSocketChunkReceived": Network.directTCPSocketChunkReceivedPayload;
21886
+ "Network.directUDPSocketJoinedMulticastGroup": Network.directUDPSocketJoinedMulticastGroupPayload;
21887
+ "Network.directUDPSocketLeftMulticastGroup": Network.directUDPSocketLeftMulticastGroupPayload;
21827
21888
  "Network.directUDPSocketCreated": Network.directUDPSocketCreatedPayload;
21828
21889
  "Network.directUDPSocketOpened": Network.directUDPSocketOpenedPayload;
21829
21890
  "Network.directUDPSocketAborted": Network.directUDPSocketAbortedPayload;
@@ -21950,6 +22011,225 @@ Error was thrown.
21950
22011
  "Runtime.executionContextsCleared": Runtime.executionContextsClearedPayload;
21951
22012
  "Runtime.inspectRequested": Runtime.inspectRequestedPayload;
21952
22013
  }
22014
+ export type EventMap = {
22015
+ ["Accessibility.loadComplete"]: [Accessibility.loadCompletePayload];
22016
+ ["Accessibility.nodesUpdated"]: [Accessibility.nodesUpdatedPayload];
22017
+ ["Animation.animationCanceled"]: [Animation.animationCanceledPayload];
22018
+ ["Animation.animationCreated"]: [Animation.animationCreatedPayload];
22019
+ ["Animation.animationStarted"]: [Animation.animationStartedPayload];
22020
+ ["Animation.animationUpdated"]: [Animation.animationUpdatedPayload];
22021
+ ["Audits.issueAdded"]: [Audits.issueAddedPayload];
22022
+ ["Autofill.addressFormFilled"]: [Autofill.addressFormFilledPayload];
22023
+ ["BackgroundService.recordingStateChanged"]: [BackgroundService.recordingStateChangedPayload];
22024
+ ["BackgroundService.backgroundServiceEventReceived"]: [BackgroundService.backgroundServiceEventReceivedPayload];
22025
+ ["BluetoothEmulation.gattOperationReceived"]: [BluetoothEmulation.gattOperationReceivedPayload];
22026
+ ["BluetoothEmulation.characteristicOperationReceived"]: [BluetoothEmulation.characteristicOperationReceivedPayload];
22027
+ ["BluetoothEmulation.descriptorOperationReceived"]: [BluetoothEmulation.descriptorOperationReceivedPayload];
22028
+ ["Browser.downloadWillBegin"]: [Browser.downloadWillBeginPayload];
22029
+ ["Browser.downloadProgress"]: [Browser.downloadProgressPayload];
22030
+ ["CSS.fontsUpdated"]: [CSS.fontsUpdatedPayload];
22031
+ ["CSS.mediaQueryResultChanged"]: [CSS.mediaQueryResultChangedPayload];
22032
+ ["CSS.styleSheetAdded"]: [CSS.styleSheetAddedPayload];
22033
+ ["CSS.styleSheetChanged"]: [CSS.styleSheetChangedPayload];
22034
+ ["CSS.styleSheetRemoved"]: [CSS.styleSheetRemovedPayload];
22035
+ ["CSS.computedStyleUpdated"]: [CSS.computedStyleUpdatedPayload];
22036
+ ["Cast.sinksUpdated"]: [Cast.sinksUpdatedPayload];
22037
+ ["Cast.issueUpdated"]: [Cast.issueUpdatedPayload];
22038
+ ["DOM.attributeModified"]: [DOM.attributeModifiedPayload];
22039
+ ["DOM.adoptedStyleSheetsModified"]: [DOM.adoptedStyleSheetsModifiedPayload];
22040
+ ["DOM.attributeRemoved"]: [DOM.attributeRemovedPayload];
22041
+ ["DOM.characterDataModified"]: [DOM.characterDataModifiedPayload];
22042
+ ["DOM.childNodeCountUpdated"]: [DOM.childNodeCountUpdatedPayload];
22043
+ ["DOM.childNodeInserted"]: [DOM.childNodeInsertedPayload];
22044
+ ["DOM.childNodeRemoved"]: [DOM.childNodeRemovedPayload];
22045
+ ["DOM.distributedNodesUpdated"]: [DOM.distributedNodesUpdatedPayload];
22046
+ ["DOM.documentUpdated"]: [DOM.documentUpdatedPayload];
22047
+ ["DOM.inlineStyleInvalidated"]: [DOM.inlineStyleInvalidatedPayload];
22048
+ ["DOM.pseudoElementAdded"]: [DOM.pseudoElementAddedPayload];
22049
+ ["DOM.topLayerElementsUpdated"]: [DOM.topLayerElementsUpdatedPayload];
22050
+ ["DOM.scrollableFlagUpdated"]: [DOM.scrollableFlagUpdatedPayload];
22051
+ ["DOM.affectedByStartingStylesFlagUpdated"]: [DOM.affectedByStartingStylesFlagUpdatedPayload];
22052
+ ["DOM.pseudoElementRemoved"]: [DOM.pseudoElementRemovedPayload];
22053
+ ["DOM.setChildNodes"]: [DOM.setChildNodesPayload];
22054
+ ["DOM.shadowRootPopped"]: [DOM.shadowRootPoppedPayload];
22055
+ ["DOM.shadowRootPushed"]: [DOM.shadowRootPushedPayload];
22056
+ ["DOMStorage.domStorageItemAdded"]: [DOMStorage.domStorageItemAddedPayload];
22057
+ ["DOMStorage.domStorageItemRemoved"]: [DOMStorage.domStorageItemRemovedPayload];
22058
+ ["DOMStorage.domStorageItemUpdated"]: [DOMStorage.domStorageItemUpdatedPayload];
22059
+ ["DOMStorage.domStorageItemsCleared"]: [DOMStorage.domStorageItemsClearedPayload];
22060
+ ["DeviceAccess.deviceRequestPrompted"]: [DeviceAccess.deviceRequestPromptedPayload];
22061
+ ["Emulation.virtualTimeBudgetExpired"]: [Emulation.virtualTimeBudgetExpiredPayload];
22062
+ ["FedCm.dialogShown"]: [FedCm.dialogShownPayload];
22063
+ ["FedCm.dialogClosed"]: [FedCm.dialogClosedPayload];
22064
+ ["Fetch.requestPaused"]: [Fetch.requestPausedPayload];
22065
+ ["Fetch.authRequired"]: [Fetch.authRequiredPayload];
22066
+ ["Input.dragIntercepted"]: [Input.dragInterceptedPayload];
22067
+ ["Inspector.detached"]: [Inspector.detachedPayload];
22068
+ ["Inspector.targetCrashed"]: [Inspector.targetCrashedPayload];
22069
+ ["Inspector.targetReloadedAfterCrash"]: [Inspector.targetReloadedAfterCrashPayload];
22070
+ ["Inspector.workerScriptLoaded"]: [Inspector.workerScriptLoadedPayload];
22071
+ ["LayerTree.layerPainted"]: [LayerTree.layerPaintedPayload];
22072
+ ["LayerTree.layerTreeDidChange"]: [LayerTree.layerTreeDidChangePayload];
22073
+ ["Log.entryAdded"]: [Log.entryAddedPayload];
22074
+ ["Media.playerPropertiesChanged"]: [Media.playerPropertiesChangedPayload];
22075
+ ["Media.playerEventsAdded"]: [Media.playerEventsAddedPayload];
22076
+ ["Media.playerMessagesLogged"]: [Media.playerMessagesLoggedPayload];
22077
+ ["Media.playerErrorsRaised"]: [Media.playerErrorsRaisedPayload];
22078
+ ["Media.playerCreated"]: [Media.playerCreatedPayload];
22079
+ ["Network.dataReceived"]: [Network.dataReceivedPayload];
22080
+ ["Network.eventSourceMessageReceived"]: [Network.eventSourceMessageReceivedPayload];
22081
+ ["Network.loadingFailed"]: [Network.loadingFailedPayload];
22082
+ ["Network.loadingFinished"]: [Network.loadingFinishedPayload];
22083
+ ["Network.requestIntercepted"]: [Network.requestInterceptedPayload];
22084
+ ["Network.requestServedFromCache"]: [Network.requestServedFromCachePayload];
22085
+ ["Network.requestWillBeSent"]: [Network.requestWillBeSentPayload];
22086
+ ["Network.resourceChangedPriority"]: [Network.resourceChangedPriorityPayload];
22087
+ ["Network.signedExchangeReceived"]: [Network.signedExchangeReceivedPayload];
22088
+ ["Network.responseReceived"]: [Network.responseReceivedPayload];
22089
+ ["Network.webSocketClosed"]: [Network.webSocketClosedPayload];
22090
+ ["Network.webSocketCreated"]: [Network.webSocketCreatedPayload];
22091
+ ["Network.webSocketFrameError"]: [Network.webSocketFrameErrorPayload];
22092
+ ["Network.webSocketFrameReceived"]: [Network.webSocketFrameReceivedPayload];
22093
+ ["Network.webSocketFrameSent"]: [Network.webSocketFrameSentPayload];
22094
+ ["Network.webSocketHandshakeResponseReceived"]: [Network.webSocketHandshakeResponseReceivedPayload];
22095
+ ["Network.webSocketWillSendHandshakeRequest"]: [Network.webSocketWillSendHandshakeRequestPayload];
22096
+ ["Network.webTransportCreated"]: [Network.webTransportCreatedPayload];
22097
+ ["Network.webTransportConnectionEstablished"]: [Network.webTransportConnectionEstablishedPayload];
22098
+ ["Network.webTransportClosed"]: [Network.webTransportClosedPayload];
22099
+ ["Network.directTCPSocketCreated"]: [Network.directTCPSocketCreatedPayload];
22100
+ ["Network.directTCPSocketOpened"]: [Network.directTCPSocketOpenedPayload];
22101
+ ["Network.directTCPSocketAborted"]: [Network.directTCPSocketAbortedPayload];
22102
+ ["Network.directTCPSocketClosed"]: [Network.directTCPSocketClosedPayload];
22103
+ ["Network.directTCPSocketChunkSent"]: [Network.directTCPSocketChunkSentPayload];
22104
+ ["Network.directTCPSocketChunkReceived"]: [Network.directTCPSocketChunkReceivedPayload];
22105
+ ["Network.directUDPSocketJoinedMulticastGroup"]: [Network.directUDPSocketJoinedMulticastGroupPayload];
22106
+ ["Network.directUDPSocketLeftMulticastGroup"]: [Network.directUDPSocketLeftMulticastGroupPayload];
22107
+ ["Network.directUDPSocketCreated"]: [Network.directUDPSocketCreatedPayload];
22108
+ ["Network.directUDPSocketOpened"]: [Network.directUDPSocketOpenedPayload];
22109
+ ["Network.directUDPSocketAborted"]: [Network.directUDPSocketAbortedPayload];
22110
+ ["Network.directUDPSocketClosed"]: [Network.directUDPSocketClosedPayload];
22111
+ ["Network.directUDPSocketChunkSent"]: [Network.directUDPSocketChunkSentPayload];
22112
+ ["Network.directUDPSocketChunkReceived"]: [Network.directUDPSocketChunkReceivedPayload];
22113
+ ["Network.requestWillBeSentExtraInfo"]: [Network.requestWillBeSentExtraInfoPayload];
22114
+ ["Network.responseReceivedExtraInfo"]: [Network.responseReceivedExtraInfoPayload];
22115
+ ["Network.responseReceivedEarlyHints"]: [Network.responseReceivedEarlyHintsPayload];
22116
+ ["Network.trustTokenOperationDone"]: [Network.trustTokenOperationDonePayload];
22117
+ ["Network.policyUpdated"]: [Network.policyUpdatedPayload];
22118
+ ["Network.reportingApiReportAdded"]: [Network.reportingApiReportAddedPayload];
22119
+ ["Network.reportingApiReportUpdated"]: [Network.reportingApiReportUpdatedPayload];
22120
+ ["Network.reportingApiEndpointsChangedForOrigin"]: [Network.reportingApiEndpointsChangedForOriginPayload];
22121
+ ["Overlay.inspectNodeRequested"]: [Overlay.inspectNodeRequestedPayload];
22122
+ ["Overlay.nodeHighlightRequested"]: [Overlay.nodeHighlightRequestedPayload];
22123
+ ["Overlay.screenshotRequested"]: [Overlay.screenshotRequestedPayload];
22124
+ ["Overlay.inspectModeCanceled"]: [Overlay.inspectModeCanceledPayload];
22125
+ ["Page.domContentEventFired"]: [Page.domContentEventFiredPayload];
22126
+ ["Page.fileChooserOpened"]: [Page.fileChooserOpenedPayload];
22127
+ ["Page.frameAttached"]: [Page.frameAttachedPayload];
22128
+ ["Page.frameClearedScheduledNavigation"]: [Page.frameClearedScheduledNavigationPayload];
22129
+ ["Page.frameDetached"]: [Page.frameDetachedPayload];
22130
+ ["Page.frameSubtreeWillBeDetached"]: [Page.frameSubtreeWillBeDetachedPayload];
22131
+ ["Page.frameNavigated"]: [Page.frameNavigatedPayload];
22132
+ ["Page.documentOpened"]: [Page.documentOpenedPayload];
22133
+ ["Page.frameResized"]: [Page.frameResizedPayload];
22134
+ ["Page.frameStartedNavigating"]: [Page.frameStartedNavigatingPayload];
22135
+ ["Page.frameRequestedNavigation"]: [Page.frameRequestedNavigationPayload];
22136
+ ["Page.frameScheduledNavigation"]: [Page.frameScheduledNavigationPayload];
22137
+ ["Page.frameStartedLoading"]: [Page.frameStartedLoadingPayload];
22138
+ ["Page.frameStoppedLoading"]: [Page.frameStoppedLoadingPayload];
22139
+ ["Page.downloadWillBegin"]: [Page.downloadWillBeginPayload];
22140
+ ["Page.downloadProgress"]: [Page.downloadProgressPayload];
22141
+ ["Page.interstitialHidden"]: [Page.interstitialHiddenPayload];
22142
+ ["Page.interstitialShown"]: [Page.interstitialShownPayload];
22143
+ ["Page.javascriptDialogClosed"]: [Page.javascriptDialogClosedPayload];
22144
+ ["Page.javascriptDialogOpening"]: [Page.javascriptDialogOpeningPayload];
22145
+ ["Page.lifecycleEvent"]: [Page.lifecycleEventPayload];
22146
+ ["Page.backForwardCacheNotUsed"]: [Page.backForwardCacheNotUsedPayload];
22147
+ ["Page.loadEventFired"]: [Page.loadEventFiredPayload];
22148
+ ["Page.navigatedWithinDocument"]: [Page.navigatedWithinDocumentPayload];
22149
+ ["Page.screencastFrame"]: [Page.screencastFramePayload];
22150
+ ["Page.screencastVisibilityChanged"]: [Page.screencastVisibilityChangedPayload];
22151
+ ["Page.windowOpen"]: [Page.windowOpenPayload];
22152
+ ["Page.compilationCacheProduced"]: [Page.compilationCacheProducedPayload];
22153
+ ["Performance.metrics"]: [Performance.metricsPayload];
22154
+ ["PerformanceTimeline.timelineEventAdded"]: [PerformanceTimeline.timelineEventAddedPayload];
22155
+ ["Preload.ruleSetUpdated"]: [Preload.ruleSetUpdatedPayload];
22156
+ ["Preload.ruleSetRemoved"]: [Preload.ruleSetRemovedPayload];
22157
+ ["Preload.preloadEnabledStateUpdated"]: [Preload.preloadEnabledStateUpdatedPayload];
22158
+ ["Preload.prefetchStatusUpdated"]: [Preload.prefetchStatusUpdatedPayload];
22159
+ ["Preload.prerenderStatusUpdated"]: [Preload.prerenderStatusUpdatedPayload];
22160
+ ["Preload.preloadingAttemptSourcesUpdated"]: [Preload.preloadingAttemptSourcesUpdatedPayload];
22161
+ ["Security.certificateError"]: [Security.certificateErrorPayload];
22162
+ ["Security.visibleSecurityStateChanged"]: [Security.visibleSecurityStateChangedPayload];
22163
+ ["Security.securityStateChanged"]: [Security.securityStateChangedPayload];
22164
+ ["ServiceWorker.workerErrorReported"]: [ServiceWorker.workerErrorReportedPayload];
22165
+ ["ServiceWorker.workerRegistrationUpdated"]: [ServiceWorker.workerRegistrationUpdatedPayload];
22166
+ ["ServiceWorker.workerVersionUpdated"]: [ServiceWorker.workerVersionUpdatedPayload];
22167
+ ["Storage.cacheStorageContentUpdated"]: [Storage.cacheStorageContentUpdatedPayload];
22168
+ ["Storage.cacheStorageListUpdated"]: [Storage.cacheStorageListUpdatedPayload];
22169
+ ["Storage.indexedDBContentUpdated"]: [Storage.indexedDBContentUpdatedPayload];
22170
+ ["Storage.indexedDBListUpdated"]: [Storage.indexedDBListUpdatedPayload];
22171
+ ["Storage.interestGroupAccessed"]: [Storage.interestGroupAccessedPayload];
22172
+ ["Storage.interestGroupAuctionEventOccurred"]: [Storage.interestGroupAuctionEventOccurredPayload];
22173
+ ["Storage.interestGroupAuctionNetworkRequestCreated"]: [Storage.interestGroupAuctionNetworkRequestCreatedPayload];
22174
+ ["Storage.sharedStorageAccessed"]: [Storage.sharedStorageAccessedPayload];
22175
+ ["Storage.sharedStorageWorkletOperationExecutionFinished"]: [Storage.sharedStorageWorkletOperationExecutionFinishedPayload];
22176
+ ["Storage.storageBucketCreatedOrUpdated"]: [Storage.storageBucketCreatedOrUpdatedPayload];
22177
+ ["Storage.storageBucketDeleted"]: [Storage.storageBucketDeletedPayload];
22178
+ ["Storage.attributionReportingSourceRegistered"]: [Storage.attributionReportingSourceRegisteredPayload];
22179
+ ["Storage.attributionReportingTriggerRegistered"]: [Storage.attributionReportingTriggerRegisteredPayload];
22180
+ ["Storage.attributionReportingReportSent"]: [Storage.attributionReportingReportSentPayload];
22181
+ ["Storage.attributionReportingVerboseDebugReportSent"]: [Storage.attributionReportingVerboseDebugReportSentPayload];
22182
+ ["Target.attachedToTarget"]: [Target.attachedToTargetPayload];
22183
+ ["Target.detachedFromTarget"]: [Target.detachedFromTargetPayload];
22184
+ ["Target.receivedMessageFromTarget"]: [Target.receivedMessageFromTargetPayload];
22185
+ ["Target.targetCreated"]: [Target.targetCreatedPayload];
22186
+ ["Target.targetDestroyed"]: [Target.targetDestroyedPayload];
22187
+ ["Target.targetCrashed"]: [Target.targetCrashedPayload];
22188
+ ["Target.targetInfoChanged"]: [Target.targetInfoChangedPayload];
22189
+ ["Tethering.accepted"]: [Tethering.acceptedPayload];
22190
+ ["Tracing.bufferUsage"]: [Tracing.bufferUsagePayload];
22191
+ ["Tracing.dataCollected"]: [Tracing.dataCollectedPayload];
22192
+ ["Tracing.tracingComplete"]: [Tracing.tracingCompletePayload];
22193
+ ["WebAudio.contextCreated"]: [WebAudio.contextCreatedPayload];
22194
+ ["WebAudio.contextWillBeDestroyed"]: [WebAudio.contextWillBeDestroyedPayload];
22195
+ ["WebAudio.contextChanged"]: [WebAudio.contextChangedPayload];
22196
+ ["WebAudio.audioListenerCreated"]: [WebAudio.audioListenerCreatedPayload];
22197
+ ["WebAudio.audioListenerWillBeDestroyed"]: [WebAudio.audioListenerWillBeDestroyedPayload];
22198
+ ["WebAudio.audioNodeCreated"]: [WebAudio.audioNodeCreatedPayload];
22199
+ ["WebAudio.audioNodeWillBeDestroyed"]: [WebAudio.audioNodeWillBeDestroyedPayload];
22200
+ ["WebAudio.audioParamCreated"]: [WebAudio.audioParamCreatedPayload];
22201
+ ["WebAudio.audioParamWillBeDestroyed"]: [WebAudio.audioParamWillBeDestroyedPayload];
22202
+ ["WebAudio.nodesConnected"]: [WebAudio.nodesConnectedPayload];
22203
+ ["WebAudio.nodesDisconnected"]: [WebAudio.nodesDisconnectedPayload];
22204
+ ["WebAudio.nodeParamConnected"]: [WebAudio.nodeParamConnectedPayload];
22205
+ ["WebAudio.nodeParamDisconnected"]: [WebAudio.nodeParamDisconnectedPayload];
22206
+ ["WebAuthn.credentialAdded"]: [WebAuthn.credentialAddedPayload];
22207
+ ["WebAuthn.credentialDeleted"]: [WebAuthn.credentialDeletedPayload];
22208
+ ["WebAuthn.credentialUpdated"]: [WebAuthn.credentialUpdatedPayload];
22209
+ ["WebAuthn.credentialAsserted"]: [WebAuthn.credentialAssertedPayload];
22210
+ ["Console.messageAdded"]: [Console.messageAddedPayload];
22211
+ ["Debugger.breakpointResolved"]: [Debugger.breakpointResolvedPayload];
22212
+ ["Debugger.paused"]: [Debugger.pausedPayload];
22213
+ ["Debugger.resumed"]: [Debugger.resumedPayload];
22214
+ ["Debugger.scriptFailedToParse"]: [Debugger.scriptFailedToParsePayload];
22215
+ ["Debugger.scriptParsed"]: [Debugger.scriptParsedPayload];
22216
+ ["HeapProfiler.addHeapSnapshotChunk"]: [HeapProfiler.addHeapSnapshotChunkPayload];
22217
+ ["HeapProfiler.heapStatsUpdate"]: [HeapProfiler.heapStatsUpdatePayload];
22218
+ ["HeapProfiler.lastSeenObjectId"]: [HeapProfiler.lastSeenObjectIdPayload];
22219
+ ["HeapProfiler.reportHeapSnapshotProgress"]: [HeapProfiler.reportHeapSnapshotProgressPayload];
22220
+ ["HeapProfiler.resetProfiles"]: [HeapProfiler.resetProfilesPayload];
22221
+ ["Profiler.consoleProfileFinished"]: [Profiler.consoleProfileFinishedPayload];
22222
+ ["Profiler.consoleProfileStarted"]: [Profiler.consoleProfileStartedPayload];
22223
+ ["Profiler.preciseCoverageDeltaUpdate"]: [Profiler.preciseCoverageDeltaUpdatePayload];
22224
+ ["Runtime.bindingCalled"]: [Runtime.bindingCalledPayload];
22225
+ ["Runtime.consoleAPICalled"]: [Runtime.consoleAPICalledPayload];
22226
+ ["Runtime.exceptionRevoked"]: [Runtime.exceptionRevokedPayload];
22227
+ ["Runtime.exceptionThrown"]: [Runtime.exceptionThrownPayload];
22228
+ ["Runtime.executionContextCreated"]: [Runtime.executionContextCreatedPayload];
22229
+ ["Runtime.executionContextDestroyed"]: [Runtime.executionContextDestroyedPayload];
22230
+ ["Runtime.executionContextsCleared"]: [Runtime.executionContextsClearedPayload];
22231
+ ["Runtime.inspectRequested"]: [Runtime.inspectRequestedPayload];
22232
+ }
21953
22233
  export interface CommandParameters {
21954
22234
  "Accessibility.disable": Accessibility.disableParameters;
21955
22235
  "Accessibility.enable": Accessibility.enableParameters;
@@ -22273,8 +22553,6 @@ Error was thrown.
22273
22553
  "Memory.getAllTimeSamplingProfile": Memory.getAllTimeSamplingProfileParameters;
22274
22554
  "Memory.getBrowserSamplingProfile": Memory.getBrowserSamplingProfileParameters;
22275
22555
  "Memory.getSamplingProfile": Memory.getSamplingProfileParameters;
22276
- "Network.getIPProtectionProxyStatus": Network.getIPProtectionProxyStatusParameters;
22277
- "Network.setIPProtectionProxyBypassEnabled": Network.setIPProtectionProxyBypassEnabledParameters;
22278
22556
  "Network.setAcceptedEncodings": Network.setAcceptedEncodingsParameters;
22279
22557
  "Network.clearAcceptedEncodingsOverride": Network.clearAcceptedEncodingsOverrideParameters;
22280
22558
  "Network.canClearBrowserCache": Network.canClearBrowserCacheParameters;
@@ -22408,6 +22686,7 @@ Error was thrown.
22408
22686
  "Page.waitForDebugger": Page.waitForDebuggerParameters;
22409
22687
  "Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogParameters;
22410
22688
  "Page.setPrerenderingAllowed": Page.setPrerenderingAllowedParameters;
22689
+ "Page.getAnnotatedPageContent": Page.getAnnotatedPageContentParameters;
22411
22690
  "Performance.disable": Performance.disableParameters;
22412
22691
  "Performance.enable": Performance.enableParameters;
22413
22692
  "Performance.setTimeDomain": Performance.setTimeDomainParameters;
@@ -22490,6 +22769,7 @@ Error was thrown.
22490
22769
  "Target.autoAttachRelated": Target.autoAttachRelatedParameters;
22491
22770
  "Target.setDiscoverTargets": Target.setDiscoverTargetsParameters;
22492
22771
  "Target.setRemoteLocations": Target.setRemoteLocationsParameters;
22772
+ "Target.getDevToolsTarget": Target.getDevToolsTargetParameters;
22493
22773
  "Target.openDevTools": Target.openDevToolsParameters;
22494
22774
  "Tethering.bind": Tethering.bindParameters;
22495
22775
  "Tethering.unbind": Tethering.unbindParameters;
@@ -22919,8 +23199,6 @@ Error was thrown.
22919
23199
  "Memory.getAllTimeSamplingProfile": Memory.getAllTimeSamplingProfileReturnValue;
22920
23200
  "Memory.getBrowserSamplingProfile": Memory.getBrowserSamplingProfileReturnValue;
22921
23201
  "Memory.getSamplingProfile": Memory.getSamplingProfileReturnValue;
22922
- "Network.getIPProtectionProxyStatus": Network.getIPProtectionProxyStatusReturnValue;
22923
- "Network.setIPProtectionProxyBypassEnabled": Network.setIPProtectionProxyBypassEnabledReturnValue;
22924
23202
  "Network.setAcceptedEncodings": Network.setAcceptedEncodingsReturnValue;
22925
23203
  "Network.clearAcceptedEncodingsOverride": Network.clearAcceptedEncodingsOverrideReturnValue;
22926
23204
  "Network.canClearBrowserCache": Network.canClearBrowserCacheReturnValue;
@@ -23054,6 +23332,7 @@ Error was thrown.
23054
23332
  "Page.waitForDebugger": Page.waitForDebuggerReturnValue;
23055
23333
  "Page.setInterceptFileChooserDialog": Page.setInterceptFileChooserDialogReturnValue;
23056
23334
  "Page.setPrerenderingAllowed": Page.setPrerenderingAllowedReturnValue;
23335
+ "Page.getAnnotatedPageContent": Page.getAnnotatedPageContentReturnValue;
23057
23336
  "Performance.disable": Performance.disableReturnValue;
23058
23337
  "Performance.enable": Performance.enableReturnValue;
23059
23338
  "Performance.setTimeDomain": Performance.setTimeDomainReturnValue;
@@ -23136,6 +23415,7 @@ Error was thrown.
23136
23415
  "Target.autoAttachRelated": Target.autoAttachRelatedReturnValue;
23137
23416
  "Target.setDiscoverTargets": Target.setDiscoverTargetsReturnValue;
23138
23417
  "Target.setRemoteLocations": Target.setRemoteLocationsReturnValue;
23418
+ "Target.getDevToolsTarget": Target.getDevToolsTargetReturnValue;
23139
23419
  "Target.openDevTools": Target.openDevToolsReturnValue;
23140
23420
  "Tethering.bind": Tethering.bindReturnValue;
23141
23421
  "Tethering.unbind": Tethering.unbindReturnValue;