devtools-protocol 0.0.960519 → 0.0.960912

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.
@@ -14788,7 +14788,8 @@
14788
14788
  "type": "string",
14789
14789
  "enum": [
14790
14790
  "Header",
14791
- "IframeAttribute"
14791
+ "IframeAttribute",
14792
+ "InFencedFrameTree"
14792
14793
  ]
14793
14794
  },
14794
14795
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.960519",
3
+ "version": "0.0.960912",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6899,6 +6899,8 @@ domain Page
6899
6899
  Header
6900
6900
  # Declaration in iframe attribute.
6901
6901
  IframeAttribute
6902
+ # Inside fenced frame.
6903
+ InFencedFrameTree
6902
6904
 
6903
6905
  experimental type PermissionsPolicyBlockLocator extends object
6904
6906
  properties
@@ -11890,7 +11890,7 @@ export namespace Protocol {
11890
11890
  /**
11891
11891
  * Reason for a permissions policy feature to be disabled.
11892
11892
  */
11893
- export type PermissionsPolicyBlockReason = ('Header' | 'IframeAttribute');
11893
+ export type PermissionsPolicyBlockReason = ('Header' | 'IframeAttribute' | 'InFencedFrameTree');
11894
11894
 
11895
11895
  export interface PermissionsPolicyBlockLocator {
11896
11896
  frameId: FrameId;