devtools-protocol 0.0.1537100 → 0.0.1541017
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.
|
@@ -734,7 +734,8 @@
|
|
|
734
734
|
},
|
|
735
735
|
{
|
|
736
736
|
"name": "iterations",
|
|
737
|
-
"description": "`AnimationEffect`'s iterations.",
|
|
737
|
+
"description": "`AnimationEffect`'s iterations. Omitted if the value is infinite.",
|
|
738
|
+
"optional": true,
|
|
738
739
|
"type": "number"
|
|
739
740
|
},
|
|
740
741
|
{
|
|
@@ -6775,7 +6776,9 @@
|
|
|
6775
6776
|
"file-selector-button",
|
|
6776
6777
|
"details-content",
|
|
6777
6778
|
"picker",
|
|
6778
|
-
"permission-icon"
|
|
6779
|
+
"permission-icon",
|
|
6780
|
+
"overscroll-area-parent",
|
|
6781
|
+
"overscroll-client-area"
|
|
6779
6782
|
]
|
|
6780
6783
|
},
|
|
6781
6784
|
{
|
|
@@ -16740,8 +16743,6 @@
|
|
|
16740
16743
|
"Allow",
|
|
16741
16744
|
"BlockFromInsecureToMorePrivate",
|
|
16742
16745
|
"WarnFromInsecureToMorePrivate",
|
|
16743
|
-
"PreflightBlock",
|
|
16744
|
-
"PreflightWarn",
|
|
16745
16746
|
"PermissionBlock",
|
|
16746
16747
|
"PermissionWarn"
|
|
16747
16748
|
]
|
package/package.json
CHANGED
|
@@ -68,8 +68,8 @@ experimental domain Animation
|
|
|
68
68
|
number endDelay
|
|
69
69
|
# `AnimationEffect`'s iteration start.
|
|
70
70
|
number iterationStart
|
|
71
|
-
# `AnimationEffect`'s iterations.
|
|
72
|
-
number iterations
|
|
71
|
+
# `AnimationEffect`'s iterations. Omitted if the value is infinite.
|
|
72
|
+
optional number iterations
|
|
73
73
|
# `AnimationEffect`'s iteration duration.
|
|
74
74
|
# Milliseconds for time based animations and
|
|
75
75
|
# percentage [0 - 100] for scroll driven animations
|
package/pdl/domains/DOM.pdl
CHANGED
package/pdl/domains/Network.pdl
CHANGED
package/types/protocol.d.ts
CHANGED
|
@@ -3230,9 +3230,9 @@ export namespace Protocol {
|
|
|
3230
3230
|
*/
|
|
3231
3231
|
iterationStart: number;
|
|
3232
3232
|
/**
|
|
3233
|
-
* `AnimationEffect`'s iterations.
|
|
3233
|
+
* `AnimationEffect`'s iterations. Omitted if the value is infinite.
|
|
3234
3234
|
*/
|
|
3235
|
-
iterations
|
|
3235
|
+
iterations?: number;
|
|
3236
3236
|
/**
|
|
3237
3237
|
* `AnimationEffect`'s iteration duration.
|
|
3238
3238
|
* Milliseconds for time based animations and
|
|
@@ -6753,7 +6753,7 @@ export namespace Protocol {
|
|
|
6753
6753
|
/**
|
|
6754
6754
|
* Pseudo element type.
|
|
6755
6755
|
*/
|
|
6756
|
-
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');
|
|
6756
|
+
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');
|
|
6757
6757
|
|
|
6758
6758
|
/**
|
|
6759
6759
|
* Shadow root type.
|
|
@@ -13316,7 +13316,7 @@ export namespace Protocol {
|
|
|
13316
13316
|
/**
|
|
13317
13317
|
* @experimental
|
|
13318
13318
|
*/
|
|
13319
|
-
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | '
|
|
13319
|
+
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
|
|
13320
13320
|
|
|
13321
13321
|
/**
|
|
13322
13322
|
* @experimental
|