devtools-protocol 0.0.901394 → 0.0.901419

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,11 @@
1
1
 
2
2
 
3
+ ## Roll protocol to r901394
4
+ ###### _2021-07-14 00:16:11_ | Diff: [2609869...f94c0d3](https://github.com/ChromeDevTools/devtools-protocol/compare/2609869...f94c0d3)
5
+ #### `Page`: modified type
6
+ * [`Page.BackForwardCacheNotRestoredReason`](https://chromedevtools.github.io/devtools-protocol/tot/Page/#type-BackForwardCacheNotRestoredReason) - The enum's `WebSocket` _updated_. The enum's `WebRTC` _updated_. The enum's `MainResourceHasCacheControlNoStore` _updated_. The enum's `MainResourceHasCacheControlNoCache` _updated_. The enum's `SubresourceHasCacheControlNoStore` _updated_. The enum's `SubresourceHasCacheControlNoCache` _updated_. The enum's `ContainsPlugins` _updated_. The enum's `DocumentLoaded` _updated_. The enum's `DedicatedWorkerOrWorklet` _updated_. The enum's `OutstandingNetworkRequestOthers` _updated_. The enum's `OutstandingIndexedDBTransaction` _updated_. The enum's `RequestedNotificationsPermission` _updated_. The enum's `RequestedMIDIPermission` _updated_. The enum's `RequestedAudioCapturePermission` _updated_. The enum's `RequestedVideoCapturePermission` _updated_. The enum's `RequestedBackForwardCacheBlockedSensors` _updated_. The enum's `RequestedBackgroundWorkPermission` _updated_. The enum's `BroadcastChannel` _updated_. The enum's `IndexedDBConnection` _updated_. The enum's `WebXR` _updated_. The enum's `SharedWorker` _updated_. The enum's `WebLocks` _updated_. The enum's `WebHID` _updated_. The enum's `WebShare` _updated_. The enum's `RequestedStorageAccessGrant` _updated_. The enum's `WebNfc` _updated_. The enum's `WebFileSystem` _updated_. The enum's `OutstandingNetworkRequestFetch` _updated_. The enum's `OutstandingNetworkRequestXHR` _updated_. The enum's `AppBanner` _updated_. The enum's `Printing` _updated_. The enum's `WebDatabase` _updated_. The enum's `PictureInPicture` _updated_. The enum's `Portal` _updated_. The enum's `SpeechRecognizer` _updated_. The enum's `IdleManager` _updated_. The enum's `PaymentManager` _updated_. The enum's `SpeechSynthesis` _updated_. The enum's `KeyboardLock` _updated_. The enum's `WebOTPService` _updated_. The enum's `OutstandingNetworkRequestDirectSocket` _updated_. The enum's `IsolatedWorldScript` _updated_. The enum's `InjectedStyleSheet` _updated_. The enum's `MediaSessionImplOnServiceCreated` _updated_. The enum's `Unknown` _updated_. The enum's `InjectedStyleSheet` _added_. The enum's `MediaSessionImplOnServiceCreated` _added_. The enum's `Unknown` _added_.
7
+
8
+
3
9
  ## Roll protocol to r900855
4
10
  ###### _2021-07-12 23:16:27_ | Diff: [56bb0ce...2609869](https://github.com/ChromeDevTools/devtools-protocol/compare/56bb0ce...2609869)
5
11
  #### `Page`: modified type
@@ -13793,7 +13793,8 @@
13793
13793
  },
13794
13794
  {
13795
13795
  "name": "highlightFrame",
13796
- "description": "Highlights owner element of the frame with given id.",
13796
+ "description": "Highlights owner element of the frame with given id.\nDeprecated: Doesn't work reliablity and cannot be fixed due to process\nseparatation (the owner node might be in a different process). Determine\nthe owner node in the client and use highlightNode.",
13797
+ "deprecated": true,
13797
13798
  "parameters": [
13798
13799
  {
13799
13800
  "name": "frameId",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.901394",
3
+ "version": "0.0.901419",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -6342,7 +6342,10 @@ experimental domain Overlay
6342
6342
  command hideHighlight
6343
6343
 
6344
6344
  # Highlights owner element of the frame with given id.
6345
- command highlightFrame
6345
+ # Deprecated: Doesn't work reliablity and cannot be fixed due to process
6346
+ # separatation (the owner node might be in a different process). Determine
6347
+ # the owner node in the client and use highlightNode.
6348
+ deprecated command highlightFrame
6346
6349
  parameters
6347
6350
  # Identifier of the frame to highlight.
6348
6351
  Page.FrameId frameId
@@ -3185,6 +3185,9 @@ export namespace ProtocolMapping {
3185
3185
  };
3186
3186
  /**
3187
3187
  * Highlights owner element of the frame with given id.
3188
+ * Deprecated: Doesn't work reliablity and cannot be fixed due to process
3189
+ * separatation (the owner node might be in a different process). Determine
3190
+ * the owner node in the client and use highlightNode.
3188
3191
  */
3189
3192
  'Overlay.highlightFrame': {
3190
3193
  paramsType: [Protocol.Overlay.HighlightFrameRequest];
@@ -2454,6 +2454,9 @@ export namespace ProtocolProxyApi {
2454
2454
 
2455
2455
  /**
2456
2456
  * Highlights owner element of the frame with given id.
2457
+ * Deprecated: Doesn't work reliablity and cannot be fixed due to process
2458
+ * separatation (the owner node might be in a different process). Determine
2459
+ * the owner node in the client and use highlightNode.
2457
2460
  */
2458
2461
  highlightFrame(params: Protocol.Overlay.HighlightFrameRequest): Promise<void>;
2459
2462