Skip to content

Commit ce40d37

Browse files
committed
Roll protocol to r1501779
1 parent ae77133 commit ce40d37

File tree

8 files changed

+28382
-197
lines changed

8 files changed

+28382
-197
lines changed

changelog.md

Lines changed: 28311 additions & 193 deletions
Large diffs are not rendered by default.

json/browser_protocol.json

Lines changed: 54 additions & 0 deletions
Large diffs are not rendered by default.

json/js_protocol.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"domain": "Console",
99
"description": "This domain is deprecated - use Runtime or Log instead.",
1010
"deprecated": true,
11+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
1112
"dependencies": [
1213
"Runtime"
1314
],
@@ -104,6 +105,7 @@
104105
{
105106
"domain": "Debugger",
106107
"description": "Debugger domain exposes JavaScript debugging capabilities. It allows setting and removing\nbreakpoints, stepping through execution, exploring stack traces, etc.",
108+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
107109
"dependencies": [
108110
"Runtime"
109111
],
@@ -1535,6 +1537,7 @@
15351537
{
15361538
"domain": "HeapProfiler",
15371539
"experimental": true,
1540+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
15381541
"dependencies": [
15391542
"Runtime"
15401543
],
@@ -1854,6 +1857,7 @@
18541857
},
18551858
{
18561859
"domain": "Profiler",
1860+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
18571861
"dependencies": [
18581862
"Runtime",
18591863
"Debugger"
@@ -2215,6 +2219,7 @@
22152219
{
22162220
"domain": "Runtime",
22172221
"description": "Runtime domain exposes JavaScript runtime by means of remote evaluation and mirror objects.\nEvaluation results are returned as mirror object that expose object type, string representation\nand unique identifier that can be used for further object reference. Original objects are\nmaintained in memory unless they are either explicitly released or are released along with the\nother objects in their object group.",
2222+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
22182223
"types": [
22192224
{
22202225
"id": "ScriptId",
@@ -3761,6 +3766,7 @@
37613766
"domain": "Schema",
37623767
"description": "This domain is deprecated.",
37633768
"deprecated": true,
3769+
"source": "/home/runner/work/devtools-protocol/devtools-protocol/pdl/js_protocol.pdl",
37643770
"types": [
37653771
{
37663772
"id": "Domain",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1501221",
3+
"version": "0.0.1501779",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Target.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ domain Target
2727
experimental boolean canAccessOpener
2828
# Frame id of originating window (is only set if target has an opener).
2929
experimental optional Page.FrameId openerFrameId
30+
# Id of the parent frame, only present for the "iframe" targets.
31+
experimental optional Page.FrameId parentFrameId
3032
experimental optional Browser.BrowserContextID browserContextId
3133
# Provides additional details for specific target types. For example, for
3234
# the type of "page", this may be set to "prerender".

scripts/inspector_protocol

Submodule inspector_protocol updated from bdc11c1 to 2524f07

types/protocol.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19876,6 +19876,11 @@ export namespace Protocol {
1987619876
* @experimental
1987719877
*/
1987819878
openerFrameId?: Page.FrameId;
19879+
/**
19880+
* Id of the parent frame, only present for the "iframe" targets.
19881+
* @experimental
19882+
*/
19883+
parentFrameId?: Page.FrameId;
1987919884
/**
1988019885
* @experimental
1988119886
*/

0 commit comments

Comments
 (0)