Skip to content

Commit e2b4f4f

Browse files
committed
Roll protocol to r1403989
1 parent d212a6d commit e2b4f4f

File tree

5 files changed

+63
-25
lines changed

5 files changed

+63
-25
lines changed

changelog.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,45 @@
11

22

3+
## Roll protocol to r1403989 — _2025-01-09T04:29:04.000Z_
4+
###### Diff: [`d212a6d...0709f89`](https://github.com/ChromeDevTools/devtools-protocol/compare/d212a6d...0709f89)
5+
6+
```diff
7+
@@ browser_protocol.pdl:11295 @@ domain Target
8+
parameters
9+
# The initial URL the page will be navigated to. An empty string indicates about:blank.
10+
string url
11+
- # Frame left origin in DIP (headless chrome only).
12+
+ # Frame left origin in DIP (requires newWindow to be true or headless shell).
13+
experimental optional integer left
14+
- # Frame top origin in DIP (headless chrome only).
15+
+ # Frame top origin in DIP (requires newWindow to be true or headless shell).
16+
experimental optional integer top
17+
- # Frame width in DIP (headless chrome only).
18+
+ # Frame width in DIP (requires newWindow to be true or headless shell).
19+
optional integer width
20+
- # Frame height in DIP (headless chrome only).
21+
+ # Frame height in DIP (requires newWindow to be true or headless shell).
22+
optional integer height
23+
# The browser context to create the page in.
24+
experimental optional Browser.BrowserContextID browserContextId
25+
- # Whether BeginFrames for this target will be controlled via DevTools (headless chrome only,
26+
+ # Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
27+
# not supported on MacOS yet, false by default).
28+
experimental optional boolean enableBeginFrameControl
29+
- # Whether to create a new Window or Tab (chrome-only, false by default).
30+
+ # Whether to create a new Window or Tab (false by default, not supported by headless shell).
31+
optional boolean newWindow
32+
- # Whether to create the target in background or foreground (chrome-only,
33+
- # false by default).
34+
+ # Whether to create the target in background or foreground (false by default, not supported
35+
+ # by headless shell).
36+
optional boolean background
37+
# Whether to create the target of type "tab".
38+
experimental optional boolean forTab
39+
```
40+
341
## Roll protocol to r1403386 — _2025-01-08T04:29:00.000Z_
4-
###### Diff: [`7757e29...7a91c3b`](https://github.com/ChromeDevTools/devtools-protocol/compare/7757e29...7a91c3b)
42+
###### Diff: [`7757e29...d212a6d`](https://github.com/ChromeDevTools/devtools-protocol/compare/7757e29...d212a6d)
543

644
```diff
745
@@ browser_protocol.pdl:992 @@ experimental domain Audits

json/browser_protocol.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24051,27 +24051,27 @@
2405124051
},
2405224052
{
2405324053
"name": "left",
24054-
"description": "Frame left origin in DIP (headless chrome only).",
24054+
"description": "Frame left origin in DIP (requires newWindow to be true or headless shell).",
2405524055
"experimental": true,
2405624056
"optional": true,
2405724057
"type": "integer"
2405824058
},
2405924059
{
2406024060
"name": "top",
24061-
"description": "Frame top origin in DIP (headless chrome only).",
24061+
"description": "Frame top origin in DIP (requires newWindow to be true or headless shell).",
2406224062
"experimental": true,
2406324063
"optional": true,
2406424064
"type": "integer"
2406524065
},
2406624066
{
2406724067
"name": "width",
24068-
"description": "Frame width in DIP (headless chrome only).",
24068+
"description": "Frame width in DIP (requires newWindow to be true or headless shell).",
2406924069
"optional": true,
2407024070
"type": "integer"
2407124071
},
2407224072
{
2407324073
"name": "height",
24074-
"description": "Frame height in DIP (headless chrome only).",
24074+
"description": "Frame height in DIP (requires newWindow to be true or headless shell).",
2407524075
"optional": true,
2407624076
"type": "integer"
2407724077
},
@@ -24084,20 +24084,20 @@
2408424084
},
2408524085
{
2408624086
"name": "enableBeginFrameControl",
24087-
"description": "Whether BeginFrames for this target will be controlled via DevTools (headless chrome only,\nnot supported on MacOS yet, false by default).",
24087+
"description": "Whether BeginFrames for this target will be controlled via DevTools (headless shell only,\nnot supported on MacOS yet, false by default).",
2408824088
"experimental": true,
2408924089
"optional": true,
2409024090
"type": "boolean"
2409124091
},
2409224092
{
2409324093
"name": "newWindow",
24094-
"description": "Whether to create a new Window or Tab (chrome-only, false by default).",
24094+
"description": "Whether to create a new Window or Tab (false by default, not supported by headless shell).",
2409524095
"optional": true,
2409624096
"type": "boolean"
2409724097
},
2409824098
{
2409924099
"name": "background",
24100-
"description": "Whether to create the target in background or foreground (chrome-only,\nfalse by default).",
24100+
"description": "Whether to create the target in background or foreground (false by default, not supported\nby headless shell).",
2410124101
"optional": true,
2410224102
"type": "boolean"
2410324103
},

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.1403386",
3+
"version": "0.0.1403989",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/browser_protocol.pdl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11295,23 +11295,23 @@ domain Target
1129511295
parameters
1129611296
# The initial URL the page will be navigated to. An empty string indicates about:blank.
1129711297
string url
11298-
# Frame left origin in DIP (headless chrome only).
11298+
# Frame left origin in DIP (requires newWindow to be true or headless shell).
1129911299
experimental optional integer left
11300-
# Frame top origin in DIP (headless chrome only).
11300+
# Frame top origin in DIP (requires newWindow to be true or headless shell).
1130111301
experimental optional integer top
11302-
# Frame width in DIP (headless chrome only).
11302+
# Frame width in DIP (requires newWindow to be true or headless shell).
1130311303
optional integer width
11304-
# Frame height in DIP (headless chrome only).
11304+
# Frame height in DIP (requires newWindow to be true or headless shell).
1130511305
optional integer height
1130611306
# The browser context to create the page in.
1130711307
experimental optional Browser.BrowserContextID browserContextId
11308-
# Whether BeginFrames for this target will be controlled via DevTools (headless chrome only,
11308+
# Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
1130911309
# not supported on MacOS yet, false by default).
1131011310
experimental optional boolean enableBeginFrameControl
11311-
# Whether to create a new Window or Tab (chrome-only, false by default).
11311+
# Whether to create a new Window or Tab (false by default, not supported by headless shell).
1131211312
optional boolean newWindow
11313-
# Whether to create the target in background or foreground (chrome-only,
11314-
# false by default).
11313+
# Whether to create the target in background or foreground (false by default, not supported
11314+
# by headless shell).
1131511315
optional boolean background
1131611316
# Whether to create the target of type "tab".
1131711317
experimental optional boolean forTab

types/protocol.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17255,37 +17255,37 @@ export namespace Protocol {
1725517255
*/
1725617256
url: string;
1725717257
/**
17258-
* Frame left origin in DIP (headless chrome only).
17258+
* Frame left origin in DIP (requires newWindow to be true or headless shell).
1725917259
*/
1726017260
left?: integer;
1726117261
/**
17262-
* Frame top origin in DIP (headless chrome only).
17262+
* Frame top origin in DIP (requires newWindow to be true or headless shell).
1726317263
*/
1726417264
top?: integer;
1726517265
/**
17266-
* Frame width in DIP (headless chrome only).
17266+
* Frame width in DIP (requires newWindow to be true or headless shell).
1726717267
*/
1726817268
width?: integer;
1726917269
/**
17270-
* Frame height in DIP (headless chrome only).
17270+
* Frame height in DIP (requires newWindow to be true or headless shell).
1727117271
*/
1727217272
height?: integer;
1727317273
/**
1727417274
* The browser context to create the page in.
1727517275
*/
1727617276
browserContextId?: Browser.BrowserContextID;
1727717277
/**
17278-
* Whether BeginFrames for this target will be controlled via DevTools (headless chrome only,
17278+
* Whether BeginFrames for this target will be controlled via DevTools (headless shell only,
1727917279
* not supported on MacOS yet, false by default).
1728017280
*/
1728117281
enableBeginFrameControl?: boolean;
1728217282
/**
17283-
* Whether to create a new Window or Tab (chrome-only, false by default).
17283+
* Whether to create a new Window or Tab (false by default, not supported by headless shell).
1728417284
*/
1728517285
newWindow?: boolean;
1728617286
/**
17287-
* Whether to create the target in background or foreground (chrome-only,
17288-
* false by default).
17287+
* Whether to create the target in background or foreground (false by default, not supported
17288+
* by headless shell).
1728917289
*/
1729017290
background?: boolean;
1729117291
/**

0 commit comments

Comments
 (0)