devtools-protocol 0.0.799090 → 0.0.799653

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/changelog.md CHANGED
@@ -1,5 +1,17 @@
1
1
 
2
2
 
3
+ ## Roll protocol to r799090
4
+ ###### _2020-08-18 07:16:17_ | Diff: [3c9bb33...0e651b0](https://github.com/ChromeDevTools/devtools-protocol/compare/3c9bb33...0e651b0)
5
+ #### `Network`: new command
6
+ * [`Network.getSecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-getSecurityIsolationStatus)
7
+ #### `Network`: new types
8
+ * [`Network.CrossOriginOpenerPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyValue)
9
+ * [`Network.CrossOriginOpenerPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginOpenerPolicyStatus)
10
+ * [`Network.CrossOriginEmbedderPolicyValue`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyValue)
11
+ * [`Network.CrossOriginEmbedderPolicyStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-CrossOriginEmbedderPolicyStatus)
12
+ * [`Network.SecurityIsolationStatus`](https://chromedevtools.github.io/devtools-protocol/tot/Network/#type-SecurityIsolationStatus)
13
+
14
+
3
15
  ## Roll protocol to r796752
4
16
  ###### _2020-08-11 02:16:15_ | Diff: [6b171b5...3c9bb33](https://github.com/ChromeDevTools/devtools-protocol/compare/6b171b5...3c9bb33)
5
17
  #### `DOM`: new command
@@ -12406,6 +12406,29 @@
12406
12406
  "root"
12407
12407
  ]
12408
12408
  },
12409
+ {
12410
+ "id": "SecureContextType",
12411
+ "description": "Indicates whether the frame is a secure context and why it is the case.",
12412
+ "experimental": true,
12413
+ "type": "string",
12414
+ "enum": [
12415
+ "Secure",
12416
+ "SecureLocalhost",
12417
+ "InsecureScheme",
12418
+ "InsecureAncestor"
12419
+ ]
12420
+ },
12421
+ {
12422
+ "id": "CrossOriginIsolatedContextType",
12423
+ "description": "Indicates whether the frame is cross-origin isolated and why it is the case.",
12424
+ "experimental": true,
12425
+ "type": "string",
12426
+ "enum": [
12427
+ "Isolated",
12428
+ "NotIsolated",
12429
+ "NotIsolatedFeatureDisabled"
12430
+ ]
12431
+ },
12409
12432
  {
12410
12433
  "id": "Frame",
12411
12434
  "description": "Information about the Frame on the page.",
@@ -12474,6 +12497,18 @@
12474
12497
  "experimental": true,
12475
12498
  "optional": true,
12476
12499
  "$ref": "AdFrameType"
12500
+ },
12501
+ {
12502
+ "name": "secureContextType",
12503
+ "description": "Indicates whether the main document is a secure context and explains why that is the case.",
12504
+ "experimental": true,
12505
+ "$ref": "SecureContextType"
12506
+ },
12507
+ {
12508
+ "name": "crossOriginIsolatedContextType",
12509
+ "description": "Indicates whether this is a cross origin isolated context.",
12510
+ "experimental": true,
12511
+ "$ref": "CrossOriginIsolatedContextType"
12477
12512
  }
12478
12513
  ]
12479
12514
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.799090",
3
+ "version": "0.0.799653",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -5712,6 +5712,28 @@ domain Page
5712
5712
  # This frame is the root of an ad frame.
5713
5713
  root
5714
5714
 
5715
+ # Indicates whether the frame is a secure context and why it is the case.
5716
+ experimental type SecureContextType extends string
5717
+ enum
5718
+ # The origin is a secure context.
5719
+ Secure
5720
+ # The host is localhost and hence is considered secure.
5721
+ SecureLocalhost
5722
+ # The origin has an insecure scheme and is not localhost.
5723
+ InsecureScheme
5724
+ # One of the ancestor frames is not a secure context.
5725
+ InsecureAncestor
5726
+
5727
+ # Indicates whether the frame is cross-origin isolated and why it is the case.
5728
+ experimental type CrossOriginIsolatedContextType extends string
5729
+ enum
5730
+ # The origin is cross-origin isolated.
5731
+ Isolated
5732
+ # The origin is not cross-origin isolated.
5733
+ NotIsolated
5734
+ # The cross-origin isolation feature is disabled.
5735
+ NotIsolatedFeatureDisabled
5736
+
5715
5737
  # Information about the Frame on the page.
5716
5738
  type Frame extends object
5717
5739
  properties
@@ -5740,6 +5762,10 @@ domain Page
5740
5762
  experimental optional string unreachableUrl
5741
5763
  # Indicates whether this frame was tagged as an ad.
5742
5764
  experimental optional AdFrameType adFrameType
5765
+ # Indicates whether the main document is a secure context and explains why that is the case.
5766
+ experimental SecureContextType secureContextType
5767
+ # Indicates whether this is a cross origin isolated context.
5768
+ experimental CrossOriginIsolatedContextType crossOriginIsolatedContextType
5743
5769
 
5744
5770
  # Information about the Resource on the page.
5745
5771
  experimental type FrameResource extends object
@@ -10547,6 +10547,16 @@ export namespace Protocol {
10547
10547
  */
10548
10548
  export type AdFrameType = ('none' | 'child' | 'root');
10549
10549
 
10550
+ /**
10551
+ * Indicates whether the frame is a secure context and why it is the case.
10552
+ */
10553
+ export type SecureContextType = ('Secure' | 'SecureLocalhost' | 'InsecureScheme' | 'InsecureAncestor');
10554
+
10555
+ /**
10556
+ * Indicates whether the frame is cross-origin isolated and why it is the case.
10557
+ */
10558
+ export type CrossOriginIsolatedContextType = ('Isolated' | 'NotIsolated' | 'NotIsolatedFeatureDisabled');
10559
+
10550
10560
  /**
10551
10561
  * Information about the Frame on the page.
10552
10562
  */
@@ -10598,6 +10608,14 @@ export namespace Protocol {
10598
10608
  * Indicates whether this frame was tagged as an ad.
10599
10609
  */
10600
10610
  adFrameType?: AdFrameType;
10611
+ /**
10612
+ * Indicates whether the main document is a secure context and explains why that is the case.
10613
+ */
10614
+ secureContextType: SecureContextType;
10615
+ /**
10616
+ * Indicates whether this is a cross origin isolated context.
10617
+ */
10618
+ crossOriginIsolatedContextType: CrossOriginIsolatedContextType;
10601
10619
  }
10602
10620
 
10603
10621
  /**