Skip to content

Commit e968b49

Browse files
committed
Roll protocol to r1430640
1 parent e1bdcc8 commit e968b49

5 files changed

Lines changed: 36 additions & 2 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1430640 — _2025-03-11T04:29:58.000Z_
4+
###### Diff: [`e1bdcc8...39a3d29`](https://github.com/ChromeDevTools/devtools-protocol/compare/e1bdcc8...39a3d29)
5+
6+
```diff
7+
@@ browser_protocol.pdl:9527 @@ domain Page
8+
command setInterceptFileChooserDialog
9+
parameters
10+
boolean enabled
11+
+ # If true, cancels the dialog by emitting relevant events (if any)
12+
+ # in addition to not showing it if the interception is enabled
13+
+ # (default: false).
14+
+ experimental optional boolean cancel
15+
16+
event domContentEventFired
17+
parameters
18+
```
19+
320
## Roll protocol to r1429850 — _2025-03-08T04:26:13.000Z_
4-
###### Diff: [`5810b85...9432174`](https://github.com/ChromeDevTools/devtools-protocol/compare/5810b85...9432174)
21+
###### Diff: [`5810b85...e1bdcc8`](https://github.com/ChromeDevTools/devtools-protocol/compare/5810b85...e1bdcc8)
522

623
```diff
724
@@ browser_protocol.pdl:7404 @@ domain Network

json/browser_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20572,6 +20572,13 @@
2057220572
{
2057320573
"name": "enabled",
2057420574
"type": "boolean"
20575+
},
20576+
{
20577+
"name": "cancel",
20578+
"description": "If true, cancels the dialog by emitting relevant events (if any)\nin addition to not showing it if the interception is enabled\n(default: false).",
20579+
"experimental": true,
20580+
"optional": true,
20581+
"type": "boolean"
2057520582
}
2057620583
]
2057720584
},

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.1429850",
3+
"version": "0.0.1430640",
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
@@ -9527,6 +9527,10 @@ domain Page
95279527
command setInterceptFileChooserDialog
95289528
parameters
95299529
boolean enabled
9530+
# If true, cancels the dialog by emitting relevant events (if any)
9531+
# in addition to not showing it if the interception is enabled
9532+
# (default: false).
9533+
experimental optional boolean cancel
95309534

95319535
event domContentEventFired
95329536
parameters

types/protocol.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15276,6 +15276,12 @@ export namespace Protocol {
1527615276

1527715277
export interface SetInterceptFileChooserDialogRequest {
1527815278
enabled: boolean;
15279+
/**
15280+
* If true, cancels the dialog by emitting relevant events (if any)
15281+
* in addition to not showing it if the interception is enabled
15282+
* (default: false).
15283+
*/
15284+
cancel?: boolean;
1527915285
}
1528015286

1528115287
export interface SetPrerenderingAllowedRequest {

0 commit comments

Comments
 (0)