devtools-protocol 0.0.1325288 → 0.0.1325906

Sign up to get free protection for your applications and to get access to all the features.
@@ -4638,6 +4638,12 @@
4638
4638
  "$ref": "CSSPositionTryRule"
4639
4639
  }
4640
4640
  },
4641
+ {
4642
+ "name": "activePositionFallbackIndex",
4643
+ "description": "Index of the active fallback in the applied position-try-fallback property,\nwill not be set if there is no active position-try fallback.",
4644
+ "optional": true,
4645
+ "type": "integer"
4646
+ },
4641
4647
  {
4642
4648
  "name": "cssPropertyRules",
4643
4649
  "description": "A list of CSS at-property rules matching this node.",
@@ -13784,7 +13790,8 @@
13784
13790
  "RestrictProperties",
13785
13791
  "UnsafeNone",
13786
13792
  "SameOriginPlusCoep",
13787
- "RestrictPropertiesPlusCoep"
13793
+ "RestrictPropertiesPlusCoep",
13794
+ "NoopenerAllowPopups"
13788
13795
  ]
13789
13796
  },
13790
13797
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1325288",
3
+ "version": "0.0.1325906",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -2208,6 +2208,9 @@ experimental domain CSS
2208
2208
  deprecated optional array of CSSPositionFallbackRule cssPositionFallbackRules
2209
2209
  # A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
2210
2210
  optional array of CSSPositionTryRule cssPositionTryRules
2211
+ # Index of the active fallback in the applied position-try-fallback property,
2212
+ # will not be set if there is no active position-try fallback.
2213
+ optional integer activePositionFallbackIndex
2211
2214
  # A list of CSS at-property rules matching this node.
2212
2215
  optional array of CSSPropertyRule cssPropertyRules
2213
2216
  # A list of CSS property registrations matching this node.
@@ -7215,6 +7218,7 @@ domain Network
7215
7218
  UnsafeNone
7216
7219
  SameOriginPlusCoep
7217
7220
  RestrictPropertiesPlusCoep
7221
+ NoopenerAllowPopups
7218
7222
 
7219
7223
  experimental type CrossOriginOpenerPolicyStatus extends object
7220
7224
  properties
@@ -5426,6 +5426,11 @@ export namespace Protocol {
5426
5426
  * A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.
5427
5427
  */
5428
5428
  cssPositionTryRules?: CSSPositionTryRule[];
5429
+ /**
5430
+ * Index of the active fallback in the applied position-try-fallback property,
5431
+ * will not be set if there is no active position-try fallback.
5432
+ */
5433
+ activePositionFallbackIndex?: integer;
5429
5434
  /**
5430
5435
  * A list of CSS at-property rules matching this node.
5431
5436
  */
@@ -11223,7 +11228,7 @@ export namespace Protocol {
11223
11228
  privateNetworkRequestPolicy: PrivateNetworkRequestPolicy;
11224
11229
  }
11225
11230
 
11226
- export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'RestrictProperties' | 'UnsafeNone' | 'SameOriginPlusCoep' | 'RestrictPropertiesPlusCoep');
11231
+ export type CrossOriginOpenerPolicyValue = ('SameOrigin' | 'SameOriginAllowPopups' | 'RestrictProperties' | 'UnsafeNone' | 'SameOriginPlusCoep' | 'RestrictPropertiesPlusCoep' | 'NoopenerAllowPopups');
11227
11232
 
11228
11233
  export interface CrossOriginOpenerPolicyStatus {
11229
11234
  value: CrossOriginOpenerPolicyValue;