Skip to content

Commit 280d28f

Browse files
committed
Roll protocol to r1441961
1 parent 52a677b commit 280d28f

6 files changed

Lines changed: 37 additions & 28 deletions

File tree

changelog.md

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11

22

3+
## Roll protocol to r1441961 — _2025-04-03T04:31:08.000Z_
4+
###### Diff: [`52a677b...0f46fbc`](https://github.com/ChromeDevTools/devtools-protocol/compare/52a677b...0f46fbc)
5+
6+
```diff
7+
@@ browser_protocol.pdl:11591 @@ domain Target
8+
optional boolean background
9+
# Whether to create the target of type "tab".
10+
experimental optional boolean forTab
11+
+ # Whether to create a hidden target. The hidden target is observable via protocol, but not
12+
+ # present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or
13+
+ # `background: false`. The life-time of the tab is limited to the life-time of the session.
14+
+ experimental optional boolean hidden
15+
returns
16+
# The id of the page opened.
17+
TargetID targetId
18+
```
19+
320
## Roll protocol to r1441344 — _2025-04-02T04:30:43.000Z_
4-
###### Diff: [`fc91db8...3b898db`](https://github.com/ChromeDevTools/devtools-protocol/compare/fc91db8...3b898db)
21+
###### Diff: [`fc91db8...52a677b`](https://github.com/ChromeDevTools/devtools-protocol/compare/fc91db8...52a677b)
522

623
```diff
724
@@ browser_protocol.pdl:983 @@ experimental domain Audits
@@ -13529,29 +13546,4 @@ index 8e43695..7fd51df 100644
1352913546
EventSource
1353013547
WebSocket
1353113548
Manifest
13532-
```
13533-
13534-
## Roll protocol to r1024111 — _2022-07-14T04:35:31.000Z_
13535-
###### Diff: [`ec96605...28ec0d8`](https://github.com/ChromeDevTools/devtools-protocol/compare/ec96605...28ec0d8)
13536-
13537-
```diff
13538-
@@ browser_protocol.pdl:7109 @@ domain Page
13539-
screen-wake-lock
13540-
serial
13541-
shared-autofill
13542-
+ shared-storage
13543-
storage-access-api
13544-
sync-xhr
13545-
trust-token-redemption
13546-
@@ -8412,10 +8413,6 @@ domain Page
13547-
EmbedderTriggeredAndSameOriginRedirected
13548-
EmbedderTriggeredAndCrossOriginRedirected
13549-
EmbedderTriggeredAndDestroyed
13550-
- MemoryLimitExceeded
13551-
- # Prerenders can be cancelled when Chrome uses excessive memory. This is
13552-
- # recorded when it fails to get the memory usage.
13553-
- FailToGetMemoryUsage
13554-
13555-
# Fired when a prerender attempt is completed.
13556-
event prerenderAttemptCompleted
1355713549
```

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24629,6 +24629,13 @@
2462924629
"experimental": true,
2463024630
"optional": true,
2463124631
"type": "boolean"
24632+
},
24633+
{
24634+
"name": "hidden",
24635+
"description": "Whether to create a hidden target. The hidden target is observable via protocol, but not\npresent in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or\n`background: false`. The life-time of the tab is limited to the life-time of the session.",
24636+
"experimental": true,
24637+
"optional": true,
24638+
"type": "boolean"
2463224639
}
2463324640
],
2463424641
"returns": [

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.1441344",
3+
"version": "0.0.1441961",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11591,6 +11591,10 @@ domain Target
1159111591
optional boolean background
1159211592
# Whether to create the target of type "tab".
1159311593
experimental optional boolean forTab
11594+
# Whether to create a hidden target. The hidden target is observable via protocol, but not
11595+
# present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or
11596+
# `background: false`. The life-time of the tab is limited to the life-time of the session.
11597+
experimental optional boolean hidden
1159411598
returns
1159511599
# The id of the page opened.
1159611600
TargetID targetId

scripts/inspector_protocol

Submodule inspector_protocol updated from 940abfc to 6d1ae0f

types/protocol.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17622,6 +17622,12 @@ export namespace Protocol {
1762217622
* Whether to create the target of type "tab".
1762317623
*/
1762417624
forTab?: boolean;
17625+
/**
17626+
* Whether to create a hidden target. The hidden target is observable via protocol, but not
17627+
* present in the tab UI strip. Cannot be created with `forTab: true`, `newWindow: true` or
17628+
* `background: false`. The life-time of the tab is limited to the life-time of the session.
17629+
*/
17630+
hidden?: boolean;
1762517631
}
1762617632

1762717633
export interface CreateTargetResponse {

0 commit comments

Comments
 (0)