devtools-protocol 0.0.1501221 → 0.0.1502260

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.
@@ -27447,6 +27447,13 @@
27447
27447
  "optional": true,
27448
27448
  "$ref": "Page.FrameId"
27449
27449
  },
27450
+ {
27451
+ "name": "parentFrameId",
27452
+ "description": "Id of the parent frame, only present for the \"iframe\" targets.",
27453
+ "experimental": true,
27454
+ "optional": true,
27455
+ "$ref": "Page.FrameId"
27456
+ },
27450
27457
  {
27451
27458
  "name": "browserContextId",
27452
27459
  "experimental": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1501221",
3
+ "version": "0.0.1502260",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -27,6 +27,8 @@ domain Target
27
27
  experimental boolean canAccessOpener
28
28
  # Frame id of originating window (is only set if target has an opener).
29
29
  experimental optional Page.FrameId openerFrameId
30
+ # Id of the parent frame, only present for the "iframe" targets.
31
+ experimental optional Page.FrameId parentFrameId
30
32
  experimental optional Browser.BrowserContextID browserContextId
31
33
  # Provides additional details for specific target types. For example, for
32
34
  # the type of "page", this may be set to "prerender".